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
).
jupyter-notebook
ipython
jupyter
lmart999
fuente
fuente
Me encontré con esto usando
networkx
ybokeh
Esto me funciona en Windows 7 ( tomado de aquí ):
Para crear un archivo jupyter_notebook_config.py, con todos los valores predeterminados comentados, puede usar la siguiente línea de comando:
$ jupyter notebook --generate-config
Abra el archivo y busque
c.NotebookApp.iopub_data_rate_limit
Comente la línea
c.NotebookApp.iopub_data_rate_limit = 1000000
y cámbiela por una tasa de incumplimiento más alta. yo uséc.NotebookApp.iopub_data_rate_limit = 10000000
Esta configuración predeterminada implacable está apareciendo en muchos lugares. Ver problemas de git:
jupyter
Se superó la velocidad de datos de IOPub
Parece que podría resolverse con el
5.1 release
Actualizar:
El cuaderno Jupyter ya está disponible
5.2.2
. Este problema debería haberse resuelto . Actualice usando conda o pip.fuente
jupiter notebook
; desde que el jupyter_notebook_config.py se escribió en su carpeta Jupyter (para mí: C: \ Users \ nnd \ .jupyter \ jupyter_notebook_config.p); Jupyter recogerá sus cambios.$ jupyter notebook --generate-config
y dice que el comando es incorrecto o no se pudo encontrar. Tengo Windows 10. ¿Alguna sugerencia?notebook --generate-config
debe escribir @artre . no el signo de dólar\documents\anaconda2\scripts
Algunos consejos adicionales para usuarios de Windows (10):
La forma correcta de abrir el portátil Jupyter con un nuevo límite de datos de Anaconda Prompt en mi propia PC con Windows 10 es:
(base) C:\Users\mobarget\Google Drive\Jupyter Notebook>jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10
fuente
Al escribir
'jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10'
enAnaconda
PowerShell
o símbolo, el portátil Jupyter se abrirá con la nueva configuración. Intente ahora ejecutar su consulta.fuente