How measure sensitivity and specificity when using kfold cross validation?

14 vues (au cours des 30 derniers jours)
I need to measure the sensitivity and specificity on the observations not used fro training in kfold cross validation like kfoldLoss fucntion that measures classification loss for observations not used for training.
What function does that?

Réponse acceptée

Divya Gaddipati
Divya Gaddipati le 15 Avr 2020
Hi,
You can use confusionmat to obtain the True Positive (TP), True Negative (TN), False Positive (FP), False Negative (FN), which can be used to calculate the Sensitivity and Specificity using the formula:
Sensitivity = TP/(TP+FN)
Specificity = TN/(TN+FP)
[cm, order] = confusionmat(target, predicted)
%% Assuming your confusion matrix is 2x2, it will look like this:
% | 0 1
% -----------
% 0 | TN FP
% 1 | FN TP
For more information, you can refer to the following link:
Hope this helps!

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by