Where to find model parameters for Classification and Regression Learner Apps?

3 次查看(过去 30 天)
Where can I find model parameters such as R squared, RMSE etc for Classification and Regression Learner Apps once the model is exported?

采纳的回答

MathWorks Support Team
The exported structure contains the model as one of the fields. This model field in turn contains all the parameters that would be otherwise found in the model output if the corresponding function was invoked. For example, if Regression Learner App is used and "Stepwise Linear Model" is chosen from the drop-down for Model Type, once the training is complete, the RMSE, R squared and other model parameters are displayed in the app. The model can be exported into a structure and its parameters, say for example, R squared can be accessed by:
>> RSquared = trainedModel.LinearModel.Rsquared.Ordinary;
Not all models will have all the parameters. For example, if you use an ensemble of bagged trees in the Classification Learner App, you will not get R squared value. If you are looking for a parameter that is not listed, please check the documentation to ensure it is generated for the type of model you are using.

更多回答(0 个)

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by