CT-AI · Question #137
Which option gives the correct values for accuracy and precision from the confusion matrix?
The correct answer is B. Accuracy = 80%, Precision = 75%. From the confusion matrix: True Positives (TP) = 15 False Positives (FP) = 5 False Negatives (FN) = 15 True Negatives (TN) = 65 Accuracy= (TP + TN) / Total = (15 + 65) / 100 Precision= TP / (TP + FP) Section3.2 - Functional Performance Criteriain the syllabus explains accuracy…
Question
Which option gives the correct values for accuracy and precision from the confusion matrix?
Options
- AAccuracy = 50%, Precision = 75%
- BAccuracy = 80%, Precision = 75%
- CAccuracy = 75%, Precision = 80%
- DAccuracy = 80%, Precision = 50%
How the community answered
(19 responses)- A11% (2)
- B79% (15)
- C5% (1)
- D5% (1)
Explanation
From the confusion matrix: True Positives (TP) = 15 False Positives (FP) = 5 False Negatives (FN) = 15 True Negatives (TN) = 65 Accuracy= (TP + TN) / Total = (15 + 65) / 100 Precision= TP / (TP + FP) Section3.2 - Functional Performance Criteriain the syllabus explains accuracy and precision exactly these ways when evaluating ML classification performance. Option B is therefore the only correct pair of values.
Topics
Community Discussion
No community discussion yet for this question.