plotting the training progress curve in Matlab
Ältere Kommentare anzeigen
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 Kommentare
KSSV
am 10 Nov. 2021
[net,info] = trainNetwork(augimdsTrain,lgraph,options);
info would carry the information you wanted.
Hana Ahmed
am 10 Nov. 2021
Bearbeitet: Hana Ahmed
am 10 Nov. 2021
KSSV
am 10 Nov. 2021
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
am 10 Nov. 2021
Antworten (0)
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!