Is there an equivalent to close all for deep learning training windows?
이전 댓글 표시
Hi,
I have some unit tests that produce a large number of deep learning "training progress" windows. Is there an equivalent to the "close all" command for plots for these training windows?
I know you can stop them appearing in the training options but when they are not in unit tests I need them displayed
Thanks,
Dan
댓글 수: 4
Philip Brown
2021년 6월 21일
I left an answer to your question, but I'm interested that you don't just want to stop the plots appearing in a unit test context. As you know, in trainingOptions you can set Plots, 'none', and perhaps also Verbose, false. This might improve test performance, and let your unit tests avoid affecting global state or printing diagnostics.
Daniel Etheridge
2021년 6월 22일
Philip Brown
2021년 6월 22일
Makes sense - so you have code where when it's called normally, you want it to make training plots, and then you are writing tests for that code? I don't think there's any equivalent to isdeployed for seeing if something is run in unit tests, so this is a little trickier.
One option you could consider is just exposing a name-value pair in the functions you are writing, AllowPlots, with a default value of true. When the unit tests call this code, they set its value to false, and that gets passed to trainingOptions in the right way. This would stop the tests from showing the plots (and potentially also give callers of your functions the ability to control this if they want to - I don't know if that's desirable).
Somewhere you might want a small number of unit tests which verify the training plot does appear when it's meant to - but you might speed up your test throughput by disabling it where it's not needed.
Daniel Etheridge
2021년 6월 24일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Get Started with Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!