我使用以下选项修改我的网络
opts = trainingOptions('adam', ...
'MaxEpochs',250, ...
'GradientThreshold',1, ...
'InitialLearnRate',0.005, ...
'LearnRateSchedule','piecewise', ...
'LearnRateDropPeriod',125, ...
'LearnRateDropFactor',0.2, ...
'Verbose',0, ...
'Plots','training-progress');
在每个批次上打开图表并保留在屏幕上。如何关闭?
它还会从实时脚本中打开这些图。如何在Jupyter笔记本中将图像嵌入到脚本体中?
更新
nntraintool close
nnet.guis.closeAllViews()
的工作。看起来这不是nntraintool
的窗口。
答案 0 :(得分:0)
一个简单的解决方案是
nnet.trainParam.showWindow = 0