Quiero ver una imagen en el cuaderno Jupyter. Es un archivo .png de 9,9 MB.
from IPython.display import Image
Image(filename='path_to_image/image.png')
Me sale el siguiente error:
IOPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
Un poco sorprendente y reportado en otra parte .
¿Se espera esto y hay una solución simple?
(El mensaje de error sugiere cambiar el límite en --NotebookApp.iopub_data_rate_limit
).