【发布时间】:2020-02-06 10:13:50
【问题描述】:
我在 sagemaker 中运行 jupyter notebook 时遇到错误:
OPub data rate exceeded.
The notebook server will temporarily stop sending output
to the client in order to avoid crashing it.
To change this limit, set the config variable
`--NotebookApp.iopub_data_rate_limit`.
Current values:
NotebookApp.iopub_data_rate_limit=1000000.0 (bytes/sec)
NotebookApp.rate_limit_window=3.0 (secs)
我尝试了几种解决方案(例如,solution1、solution2),但都不起作用。
有人知道如何解决这个问题吗?
【问题讨论】:
-
选择下面的答案并将
c.NotebookApp.iopub_data_rate_limit = 10000000添加到.jupyter/jupyter_notebook_config.py文件的末尾。如果您只是取消注释并添加一个零,则它不起作用,至少我的情况是这样。
标签: python-3.x amazon-sagemaker