plotting the training progress curve in Matlab
显示 更早的评论
I have finished training a deep learning model, but unfortunately I forgot to save the curve which shows the training and validation progress. Could you please help me plotting this curve from the saved workspace in Matlab?
The commands I used to save the trained model are:
net=trainNetwork(augimdsTrain,lgraph,options);
save net
4 个评论
KSSV
2021-11-10
[net,info] = trainNetwork(augimdsTrain,lgraph,options);
info would carry the information you wanted.
Hana Ahmed
2021-11-10
编辑:Hana Ahmed
2021-11-10
KSSV
2021-11-10
I don't think that you can plot it now. The saved net contains only the last weights which have satisfied your fed criteria.
Hana Ahmed
2021-11-10
回答(0 个)
类别
在 帮助中心 和 File Exchange 中查找有关 Deep Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!