Effacer les filtres
Effacer les filtres

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

3 vues (au cours des 30 derniers jours)
Where can I find model parameters such as R squared, RMSE etc for Classification and Regression Learner Apps once the model is exported?

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 26 Fév 2019
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.

Plus de réponses (0)

Tags

Aucun tag saisi pour le moment.

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by