s5unnyjjj's LOG
ML - Problem #3 : Metrics for binary classification (1) 본문
Artificial Intelligence/Machine Learning
ML - Problem #3 : Metrics for binary classification (1)
s5unnyjjj 2021. 6. 12. 11:55Problem #3 : Metrics for binary classification
하단의 표에서 y는 trau labels이고, h(x)는 classifier의 classification values이다.
Threshold 0.4인 classifier의 경우 Accuracy, Recall, Precision 그리고 F1-score 을 구하시오.
풀이를 원하실 경우, 하단의 '더보기' 를 클릭해주시기 바랍니다.
더보기
해당 문제를 풀기위한 Accuracy, Recall, Precision, F1-score 의 설명과 식은 아래 링크에 업로드되어있으니 본 글에서는 생략하도록 한다.
https://s5unnyjjj.tistory.com/44?category=939071
True Positive 값은 7이다.
False Positive 값은 3이다.
False Negative 값은 0이다.
True Negative 값은 2이다.
∴ 그러므로 Accuracy는 9/12이고, Recall은 4/7이고, Precision은 4/4=1이다.
∴ F-1 score은 1/(1+10/7) = 7/17이다.
>> 위 내용은 필자가 직접 작성한 내용입니다.
>> 부족한 점이 많을 수 있기에 잘못된 내용이나 궁금한 사항이 있으면 댓글 달아주시기 바랍니다.
>> 긴 글 읽어주셔서 감사합니다.
반응형
'Artificial Intelligence > Machine Learning' 카테고리의 다른 글
Comments