Generate training progress plot from saved trained model
9 次查看(过去 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
bernose result
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 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!