フィルターのクリア

Saving the regression trained model

13 ビュー (過去 30 日間)
Nethravathi S
Nethravathi S 2021 年 9 月 2 日
コメント済み: Wan Ji 2021 年 9 月 2 日
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?

採用された回答

Wan Ji
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
  2 件のコメント
Nethravathi S
Nethravathi S 2021 年 9 月 2 日
Thank you.. It worked
Wan Ji
Wan Ji 2021 年 9 月 2 日
My pleasure :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSupport Vector Machine Regression についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by