why I can't export the training plot
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
new_user
el 20 de Abr. de 2022
Comentada: Tereza Simralova
el 30 de Abr. de 2022
i don't have any option to export the trainng plot. can someone suggest what shouuld I do expcept taking screenshot.
1 comentario
Tereza Simralova
el 30 de Abr. de 2022
trainingPlot is automatically saved in the Result folder for each trial. You can open it in matlab using command openfig('trainingPlot.fig', 'visible')
openfig('trainingPlot.fig', 'visible')
Respuesta aceptada
KSSV
el 20 de Abr. de 2022
Try:
currentfig = findall(groot, 'Tag', 'NNET_CNN_TRAININGPLOT_UIFIGURE');
savefig(currentfig,['Training,','.fig']);
1 comentario
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!