web-dev-qa-db-ja.com

JupyterHubでNotebookApp.iopub_data_rate_limitおよびその他のNotebookApp設定を設定する方法

jupyter notebook --NotebookApp.iopub_data_rate_limit=10000000000引数を使用してノートブックを開始したい。 JupyterHubのどこに設定できますか?

11
DuckQueen

コマンドラインを開いて入力します

jupyter notebook --NotebookApp.iopub_data_rate_limit=1e10

これにより、データレートが増加したjupyterが起動します。

8
Workhorse

このコマンドを使用して設定ファイルを作成する必要があります$ jupyter notebook --generate-config、これの答え リンク

4
Adil Blanco

04:Windowsの「jupyter low memory ..」の問題「IOPUBデータレートを超えました」:

  1. cmdを開く:
  2. メインパス:C:\ Users\siege>(これは私のルートパスです)

    次のコマンドを入力します: "jupyter notebook --generate-config"

    you hav:C:\ Users\siege> jupyter notebook --generate-config

  3. システムはpath:C:\ Users\siege> .jupyterに「jupyter_notebook_config.py」を生成します

  4. 「jupyter_notebook_config.py」を開き、行を見つけます

    #c.NotebookApp.iopub_data_rate_limit = 1000000

    コメントを外し、次のように変更します。

    c.NotebookApp.iopub_data_rate_limit = 100000000

  5. それを保存

  6. jupyterを再起動します

https://www.youtube.com/watch?v=B_YlLf6fa5A

2
Vahab