Training-progress Plots not supported for compiled EXE?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Jan
am 27 Dez. 2019
Kommentiert: sweta sharma
am 28 Dez. 2022
classOptions = trainingOptions('sgdm', ...
...
'Plots','training-progress');
I have a Deep Learning script that I would like to deploy as an exe.
I get the error message that the training progress plots are not supported.
2 Questions:
a) How can I make a switch inside my program that determines if it is run from within Matlab or from the Exe?
i.e. if "matlab"
'Plots','training-progress');
else
'none','training-progress');
b) the training progress outputs on my screen. How can I capture these numbers in an array, so that I can plot it myself at the end when running the executable version?
thanks!
0 Kommentare
Akzeptierte Antwort
Roshni Garnayak
am 8 Jan. 2020
To check if the code is run in the MATLAB mode or deployed mode, use ‘isdeployed’ function. Refer to the following link to know more about the function:
2 Kommentare
sweta sharma
am 28 Dez. 2022
but does it mean the progress can not be shown when the application is deployed?
Is there any way?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!