Generate training progress plot from saved trained model

조회 수: 30 (최근 30일)
Teo
Teo 2021년 7월 26일
댓글: Teo 2021년 12월 10일
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
bernose result

채택된 답변

KSSV
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.
  댓글 수: 6
Teo
Teo 2021년 12월 10일
Hi @KSSV,
sorry to distueb you again. i trying to regenerate verbose table as shown below from the traininfo that i saved earlier after finish running the model.
However, when i treid to tabulate the data from traininfo using struct2table i get the following table which is completely different from original verbose table that we got after finish training the model in matlab. And i notice the epoch column are also missing.
Appreciate if you could help on this. Thank You.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Support Vector Machine Regression에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by