머신러닝/12. 딥러닝챗봇
구름 IDE 사용시 IOPub data rate exceeded. 에러 발생 할때
파아란기쁨1
2022. 6. 29. 13:11
반응형
IOPub 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)
위의 에러는 출력초과시 발생하는 오류 메시지이다.
다음의 파일을 오픈한다.
vi /root/.jupyter/jupyter_notebook_config.py
:/_date_rate_limit 으로 검색을 한 후에

앞에 #을 없애고 뒤의 값을 1.0e10으로 변경 한다.
:wq 를 이용하여 저장후 빠져 나온 다음 서버를 다시 시작하여 접속
반응형