VS Code 不会显示同一单元格超过 500 个输出

问题描述 投票:0回答:1

我在 ipynb 中进行了模型训练,包含 576 组不同的超参数。每个都会输出训练日志和 matplotlib 图。但在 500 后我得到以下输出。

output

如何将这个限制增加到1000?

我期待 576 个由图表分隔的单独可滚动输出

python visual-studio-code jupyter-notebook
1个回答
0
投票

尝试将其添加到您的 vscode settings.json 中。

ctrl+shift+p > 设置(json)

"notebook.output.scrolling": true,
"notebook.output.textLineLimit": 600,
© www.soinside.com 2019 - 2024. All rights reserved.