Generate training progress plot from saved trained model
조회 수: 7 (최근 30일)
이전 댓글 표시
Hi,
i would like to know is there any ways to generate back the training progress plot or verbose result from the saved trained model if i forgot screenshot/save both data manually?
the code that i use to save the trained model is as below.
testnet = trainNetwork(augimdsTrain,lgraph,options);
save testnet
training progress plot
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/695049/image.png)
bernose result
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/695054/image.png)
댓글 수: 0
채택된 답변
KSSV
2021년 7월 26일
[testnet,traininfo] = trainNetwork(augimdsTrain,lgraph,options);
save('data.mat','testnet','traininfo')
traininfo has the details you want, you can plot them later if you save it.
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!