Saving the regression trained model
조회 수: 3 (최근 30일)
이전 댓글 표시
Hello,
I am using regression app for forecasting.
After training I am exporting the trained model for actual prediction.
But, when I am closing matlab and reopening later, the model trained is gone.
How to save the regression model trained, so that I can use it any time later?
댓글 수: 0
채택된 답변
Wan Ji
2021년 9월 2일
You should save the trained model after click the 'export' the model to workspace. (you can see you saved model in workspace)
save trainedModel trainedModel
Then you can see a file named 'trainedModel.mat' in your current folder.
if you want to reuse your trained model, just use
load('trainedModel.mat');
Then all is ok
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Regression에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!