why I can't export the training plot
4 ビュー (過去 30 日間)
古いコメントを表示
i don't have any option to export the trainng plot. can someone suggest what shouuld I do expcept taking screenshot.
1 件のコメント
Tereza Simralova
2022 年 4 月 30 日
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')
採用された回答
KSSV
2022 年 4 月 20 日
Try:
currentfig = findall(groot, 'Tag', 'NNET_CNN_TRAININGPLOT_UIFIGURE');
savefig(currentfig,['Training,','.fig']);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!