| Contents | Index |
Classification loss for observations not used for training
L = kfoldLoss(ens)
L = kfoldLoss(ens,Name,Value)
L = kfoldLoss(ens) returns loss obtained by cross-validated classification model ens. For every fold, this method computes classification loss for in-fold observations using a model trained on out-of-fold observations.
L = kfoldLoss(ens,Name,Value) calculates loss 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 |
Object of class ClassificationPartitionedEnsemble. Create ens with fitensemble along with one of the cross-validation options: 'crossval', 'kfold', 'holdout', 'leaveout', or 'cvpartition'. Alternatively, create ens from a classification ensemble with crossval. |
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.
'folds' |
Indices of folds ranging from 1 to ens.KFold. Use only these folds for predictions. Default: 1:ens.KFold |
'lossfun ' |
Function handle or string representing a loss function. Built-in loss functions:
You can write your own loss function in the syntax described in Loss Functions. Default: 'classiferror' |
'mode' |
A string for determining the output of kfoldLoss:
Default: 'average' |
L |
Loss, by default the fraction of misclassified data. L can be a vector, and can mean different things, depending on the name-value pair settings. |
The built-in loss functions are:
'binodeviance' — For binary classification, assume the classes yn are -1 and 1. With weight vector w normalized to have sum 1, and predictions of row n of data X as f(Xn), the binomial deviance is
![]()
'classiferror' — Fraction of misclassified data, weighted by w.
'exponential' — With the same definitions as for 'binodeviance', the exponential loss is
![]()
To write your own loss function, create a function file of the form
function loss = lossfun(C,S,W,COST)
N is the number of rows of ens.X.
K is the number of classes in ens, represented in ens.ClassNames.
C is an N-by-K logical matrix, with one true per row for the true class. The index for each class is its position in tree.ClassNames.
S is an N-by-K numeric matrix. S is a matrix of posterior probabilities for classes with one row per observation, similar to the score output from predict.
W is a numeric vector with N elements, the observation weights.
COST is a K-by-K numeric matrix of misclassification costs. The default 'classiferror' gives a cost of 0 for correct classification, and 1 for misclassification.
The output loss should be a scalar.
Pass the function handle @lossfun as the value of the lossfun name-value pair.
Find the average cross-validated classification error for an ensemble model of the ionosphere data:
load ionosphere
ens = fitensemble(X,Y,'AdaBoostM1',100,'Tree');
cvens = crossval(ens);
L = kfoldLoss(cvens)
L =
0.0826
crossval | kfoldEdge | kfoldfun | kfoldMargin | kfoldPredict
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |