How to save training process output in MATLAB?
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
In Deep learning/ machine learning, using MATLAB to apply neural networks for the training process. How to save training process output in MATLAB?
0 Commenti
Risposte (1)
Constantino Carlos Reyes-Aldasoro
il 6 Mag 2023
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 Commenti
Vedere anche
Categorie
Scopri di più su Deep Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!