Generate training progress plot from saved trained model
    4 ビュー (過去 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 件)
参考
カテゴリ
				Help Center および File Exchange で Deep Learning Toolbox についてさらに検索
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!





