How to save training process output in MATLAB?
12 次查看(过去 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!