How to specify loss function when using 'fitrensemble' function?
7 次查看(过去 30 天)
显示 更早的评论
MathWorks Support Team
2021-3-26
编辑: MathWorks Support Team
2024-8-29
I am using "fitrensemble" function from MATLAB Statistics and Machine Learning Toolbox for a machine learning application. In the documentation, the default loss function is set to mean square error, how can I specify a different loss function?
采纳的回答
MathWorks Support Team
2024-7-29
编辑:MathWorks Support Team
2024-8-29
"fitrensemble" function has different algorithms/solvers and the loss depends on the type of algorithm/solver you select for the training. Please run the below command in the command window of installed MATLAB R2019a version to read more about details on the ensemble algorithms:
>> web(fullfile(docroot, 'stats/ensemble-algorithms.html'))
For example, you can use the following code to specify algorithm/solver:
>> fitrensemble(model, 'Method', 'Bag')
Once a model is trained, you can evaluate the model with different loss functions via "resubLoss" function. However, this function cannot change the loss function for training.
Please run the below command in the command window of installed MATLAB R2019a version to get release specific documentation on "resubLoss" function:
>> web(fullfile(docroot, 'stats/regressionensemble.resubloss.html'))
Please follow the below link to search for the required information regarding the current release:
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Regression Tree Ensembles 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!