How to save training process output in MATLAB?
14 ビュー (過去 30 日間)
古いコメントを表示
In Deep learning/ machine learning, using MATLAB to apply neural networks for the training process. How to save training process output in MATLAB?
0 件のコメント
回答 (1 件)
Constantino Carlos Reyes-Aldasoro
2023 年 5 月 6 日
That should be pretty easy, train whatever architecture you are using (say you call that net) with whatever training data. Once training finishes, you save it
save results_2023_05_06 net
and the trained architecture will be saved in the file results_2023_05_06. Next time, just load the results from the file and you can then use the trained network directly.
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!