Quero ver uma imagem no caderno Jupyter. É um arquivo .png de 9,9 MB.
from IPython.display import Image
Image(filename='path_to_image/image.png')
Recebo o erro abaixo:
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
Um pouco surpreendente e relatado em outro lugar .
Isso é esperado e existe uma solução simples?
(Mensagem de erro sugere alteração do limite em --NotebookApp.iopub_data_rate_limit
.)