Hello,
How can I increase the data rate.
I have tried generate a config file
jupyter notebook --generate-config
Then increased the limit from this
# Default: 1000000
c.NotebookApp.iopub_data_rate_limit = 10000000
To the following:
# Default: 1000000
c.NotebookApp.iopub_data_rate_limit = 100000000000000000000000000
I have also tried the following command:
jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e24
But I still get the following output
IOPub data rate exceeded.
The Jupyter server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--ServerApp.iopub_data_rate_limit`.
Current values:
ServerApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
ServerApp.rate_limit_window=3.0 (secs)
For some reason although I update the values they do not save or get picked up by my notebook.
Thank you in advance for the help