Borrar filtros
Borrar filtros

Posterior probability for cross-validated fitcecoc model

5 visualizaciones (últimos 30 días)
Noam
Noam el 22 de En. de 2024
Comentada: Noam el 24 de En. de 2024
I'm trying to get posterior probabilities, rather than prediction scores from a cross-validated fitcecoc model using the following
t = templateSVM('Standardize',true);
Modelall = fitcecoc(X,Y,'Learners',t,'ClassNames', unique(stimNum),'Options',opts,'FitPosterior', true);
[label,~,~,Posterior] = resubPredict(Modelall);
However, when cross-validation is turned on
Modelall = fitcecoc(X,Y,'Learners',t,'ClassNames', unique(stimNum),'Options',opts,'FitPosterior', true, 'CrossVal','on','KFold' ,10);
I get the following error:
"Incorrect number or types of inputs or outputs for function 'resubPredict'."
is there any way to get the prediction probability of a multiclass cross-validated classifier analogous to a binary SVM (using 'fitSVMPosterior')?
Thanks in advance

Respuesta aceptada

Aditya
Aditya el 24 de En. de 2024
Hi Noam,
When you have a cross-validated error-correcting output codes (ECOC) model created with fitcecoc and the 'CrossVal','on' option, you cannot use resubPredict to get the predictions or posterior probabilities. Instead, you should use kfoldPredict to obtain the cross-validated predictions and posterior probabilities. Here's how you can do it:
% Cross-validated ECOC model
opts = statset('UseParallel', false); % Set 'UseParallel' to true if you want to use parallel computing
Modelall = fitcecoc(X, Y, 'Learners', t, 'ClassNames', unique(Y), ...
'Options', opts, 'FitPosterior', true, 'CrossVal', 'on', 'KFold', 10);
% Get the predicted labels and posterior probabilities for each fold
[label,~,~,Posterior] = kfoldPredict(Modelall);
The kfoldPredict function will return the cross-validated predicted labels in label and the posterior probabilities in Posterior. The syntax label,~,~,Posterioris used to ignore the second and third output arguments from kfoldPredict and only obtain the labels and posterior probabilities.
For additional examples and documentation, you can refer to the official MathWorks documentation page for fitcecoc” function, which includes an example of using kfoldPredict with a cross-validated ECOC model.
Hope this helps you to resolve the issue!

Más respuestas (0)

Categorías

Más información sobre Statistics and Machine Learning Toolbox en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by