why I can't export the training plot
조회 수: 5 (최근 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!