JupyterLab内存溢出导致卡死的解决方法
作者:互联网
最近在windows环境下用JupyterLab做sklearn机器学习,碰到加入分枝随机模式参数后,运行卡死的情况,解决方法如下:
1、打开cmd使用命令生成配置文件
jupyter notebook --generate-config
系统会返回配置文件生成路径:
Writing default config to: C:\Users\xxx\.jupyter\jupyter_lab_config.py
2、打开上述路径的jupyter_lab_config.py(使用记事本或notepad等文本编辑器即可),并编辑NotebookApp.max_buffer_size(删除#号注释)
NotebookApp.max_buffer_size = 你想分配的内存大小(以字节为单位)
3、重新运行JupyterLab
标签:JupyterLab,jupyter,配置文件,内存,卡死,NotebookApp,config,size 来源: https://www.cnblogs.com/shinonomeasahi/p/16133714.html