필터 지우기
필터 지우기

How measure sensitivity and specificity when using kfold cross validation?

조회 수: 3 (최근 30일)
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?

채택된 답변

Divya Gaddipati
Divya Gaddipati 2020년 4월 15일
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!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Classification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by