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)
时间: 2024-01-12 16:03:49 浏览: 349
Rate Limit Exceeded(解决方案).md
这个错误通常是因为输出的数据量太大,超过了jupyter notebook的数据传输限制。可以通过增加数据传输限制的大小来解决此问题。可以尝试使用以下命令来更改限制:
```
jupyter notebook --NotebookApp.iopub_data_rate_limit=1.0e10
```
这将把传输限制增加到10 GB/s,可以根据需要进行调整。
阅读全文