Hyperparameter Optimization in ECOC classifier: which loss function is used?

조회 수: 2 (최근 30일)
Dear, I'm training an ECOC classifier using knn as the base classifier.
I would like to use the option 'OptimizeHyperparameters','auto' to let fitcecoc apply leave one out cross validation the best Coding, NumNeighbors, distace parameters.
tknn = templateKNN();
mdlknnCecoc = compact(fitcecoc(XKnn,labelsRed, ...
'OptimizeHyperparameters','all', ...
'HyperparameterOptimizationOptions',struct( 'UseParallel',...
true,'CVPartition',c), 'Learners',tknn));
In MATLAB help I read: " The optimization attempts to minimize the cross-validation loss (error) for fitcecoc by varying the parameters."
However, which loss function is used? I found no detail about that.

채택된 답변

Don Mathis
Don Mathis 2019년 9월 20일
it says
"The optimization attempts to minimize the cross-validation loss (error) for fitcecoc by varying the parameters. For information about cross-validation loss in a different context, see Classification Loss. "
If you click on "Classification Loss" it tells you about the multiclass loss function.
  댓글 수: 3
Don Mathis
Don Mathis 2019년 9월 20일
Yes, I see that now. The answer is 'classiferror', because that's the default loss for kfoldLoss for classification models.
When optimization is used, kfoldLoss is called with its default loss to compute the cross-validated loss to be optimized. The linked-to page was actually the classification kfoldLoss page, and if you scroll up you can find where it lists its default loss. I'm sorry it's not easier to find than that.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by