Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

like image 888
Varun Rao Avatar asked Feb 21 '18 12:02

Varun Rao


2 Answers

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

like image 113
sv1997 Avatar answered Oct 20 '22 09:10

sv1997


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)
like image 35
Jung Hyun Lee Avatar answered Oct 20 '22 10:10

Jung Hyun Lee