How to save training process output in MATLAB?
조회 수: 13 (최근 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!