Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
545 views
in Technique[技术] by (71.8m points)

python - 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.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...