인공지능/딥러닝

[jupyter notebook/주피터노트북] the kernel appears to have died. it will restart automatically. 실행시 커널 죽는 문제 해결방법 윈도우 window

로밀리언 2021. 5. 29. 21:59
반응형

the kernel appears to have died. it will restart automatically. 

위와 같은 error가 발생하면 주피터 노트북의 메모리 할당을 높여주면 된다.

 

jupyter_notebook_config.py 파일의 max_buffer_size를 변경해주면 된다.


윈도우에서 설정 파일은 내 PC -> 로컬 디스크 -> 사용자 -> 사용자 이름 -> .jupyter 폴더로 들어가면 확인할 수 있다.

 

jupyter_notebook_config.py 오른쪽 클릭 연결프로그램에서 visual studio code 혹은 본인이 사용하는 IDE 선택한 후  Ctrl + F로 max_buffer_size를 찾아준다

 

기존에 있는 주석을 해제 하고 값을 아래와 같이

c.NotebookApp.max_buffer_size =10000000000으로 변경해준다

 

 위에서 max_buffer_size를 변경한 뒤 현재까지 더 이상 아래와 같은 문제는 발생하지 않았다.

the kernel appears to have died. it will restart automatically. 

 

반응형