Borrar filtros
Borrar filtros

How to best do cross-validation using fitensemble?

1 visualización (últimos 30 días)
Tobias Pahlberg
Tobias Pahlberg el 23 de Jun. de 2016
Respondida: Don Mathis el 31 de Mzo. de 2017
Hi
I generated code from the Classification Learner app where I wanted to cross-validate a classifier. It gave me something like:
classificationEnsemble = fitensemble(predictors, response, Bag', nRounds, Tree', type', 'Classification', ...);
partitionedModel = crossval(classificationEnsemble, 'KFold', 5);
But I can also provide the cross-validation parameter directly into the fitensemble command. Like:
classificationEnsemble = fitensemble(..., 'KFold', 5);
Is there any difference here? Is the first case trained on all the data and then cross-validated??
/Thanks

Respuesta aceptada

Don Mathis
Don Mathis el 31 de Mzo. de 2017
It doesn't make any difference in the models. The only difference is that with the first method you also get a single model trained on the full dataset.

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by