| Contents | Index |
Cross validate ensemble
cvens = crossval(ens)
cvens = crossval(ens,Name,Value)
cvens = crossval(ens) creates a cross-validated ensemble from ens, a classification ensemble. Default is 10-fold cross validation.
cvens = crossval(ens,Name,Value) creates a cross-validated ensemble with additional options specified by one or more Name,Value pair arguments. You can specify several name-value pair arguments in any order as Name1,Value1,…,NameN,ValueN.
ens |
A classification ensemble created with fitensemble. |
Specify optional comma-separated pairs of Name,Value arguments, where Name is the argument name and Value is the corresponding value. Name must appear inside single quotes (' '). You can specify several name and value pair arguments in any order as Name1,Value1,...,NameN,ValueN.
'cvpartition' |
A partition of class cvpartition. Sets the partition for cross validation. Use no more than one of the name-value pairs cvpartition, holdout, kfold, or leaveout. |
'holdout' |
Holdout validation tests the specified fraction of the data, and uses the rest of the data for training. Specify a numeric scalar from 0 to 1. You can only use one of these four options at a time for creating a cross-validated tree: 'kfold', 'holdout', 'leaveout', or 'cvpartition'. |
'kfold' |
Number of folds for cross validation, a numeric positive scalar. Use no more than one of the name-value pairs 'kfold', 'holdout', 'leaveout', or 'cvpartition'. |
'leaveout' |
If 'on', use leave-one-out cross validation. Use no more than one of the name-value pairs 'kfold', 'holdout', 'leaveout', or 'cvpartition'. |
'nprint' |
Printout frequency, a positive integer scalar. Use this parameter to observe the training of cross-validation folds. Default: 'off', meaning no printout |
cvens |
A cross-validated classification ensemble of class ClassificationPartitionedEnsemble. |
You can create a cross-validation ensemble directly from the data, instead of creating an ensemble followed by a cross-validation ensemble. To do so, include one of these five options in fitensemble: 'crossval', 'kfold', 'holdout', 'leaveout', or 'cvpartition'.
Create a cross-validated classification model for the Fisher iris data, and assess its quality using the kfoldLoss method.
load fisheriris
ens = fitensemble(meas,species,'AdaBoostM2',100,'Tree');
cvens = crossval(ens);
L = kfoldLoss(cvens)
L =
0.0467ClassificationPartitionedEnsemble | cvpartition
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |