AAIA · Question #15
When auditing a machine learning (ML) solution, false positives can BEST be assessed by examining the level of:
The correct answer is A. Precision. Precision is the metric that directly measures false positives. It is calculated as: Precision = True Positives / (True Positives + False Positives). A low precision score indicates a high rate of false positives - cases where the model predicted a positive outcome incorrectly…
Question
When auditing a machine learning (ML) solution, false positives can BEST be assessed by examining the level of:
Options
- APrecision
- BCompleteness
- CAccuracy
- DRecall
How the community answered
(39 responses)- A90% (35)
- B5% (2)
- C3% (1)
- D3% (1)
Explanation
Precision is the metric that directly measures false positives. It is calculated as: Precision = True Positives / (True Positives + False Positives). A low precision score indicates a high rate of false positives - cases where the model predicted a positive outcome incorrectly. Recall (D) measures false negatives (missed true positives). Accuracy (C) is an overall measure that can mask false positive rates, especially in imbalanced datasets. Completeness (B) is a data quality concept, not a standard ML performance metric for evaluating false positives.
Topics
Community Discussion
No community discussion yet for this question.