I understand that the below command
jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10
would let me set the data rate. But on Colab, I cannot run this command since the notebook is already open.
Is there any way I can avoid getting the IOPub error in an active notebook on Colab?
I am running keras code and I get this error when I train my neural network. I really need to see the output since it lets me know how many epochs have been completed and the accuracy.
IoPub Error is occurring in Colab because you are trying to display the output on the console itself(Eg. print() statements) which is very large.
So the work around would be, Write the output to the file(instead of print statements) and download the file from the Colab
Note: Please do avoid writing simple print statements(just to print your contents in datasets) when you are training with large dataset
You can use pprint module from python library. It works well from colab. However, colab prints output in limited number of line such as 5,000 lines on screen if it exceeds output limit.
from pprint import pprint
printable = 'long statement'
pprint(printable)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With