Jupyterノートブックで画像を表示したい。9.9MBの.pngファイルです。
from IPython.display import Image
Image(filename='path_to_image/image.png')
以下のエラーが発生します:
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
少し意外で、他の場所で報告されています。
これは予想されることであり、簡単な解決策はありますか?
(エラーメッセージは、の制限の変更を示唆しています--NotebookApp.iopub_data_rate_limit
。)