Is there an equivalent to close all for deep learning training windows?
Mostrar comentarios más antiguos
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 comentarios
Philip Brown
el 21 de Jun. de 2021
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
el 22 de Jun. de 2021
Philip Brown
el 22 de Jun. de 2021
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
el 24 de Jun. de 2021
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Get Started with Statistics and Machine Learning Toolbox en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!