Search code examples
pythonkerasjupyter-notebookgoogle-colaboratory

IOPub Error on Google Colaboratory in Jupyter Notebook


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.


Solution

  • 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