Learn Before
How to choose between precision and recall?
The choice between precision and recall depends on which error type is more costly for a given application, since both metrics assume maximizing True Positives is always desirable. Precision is preferred when minimizing False Positives matters most, such as in crime detection or recommendation systems, where falsely flagging a negative case as positive is costly. Recall is preferred when minimizing False Negatives matters most, such as in tumor detection, where failing to detect a true positive case carries a very large cost. The final choice ultimately depends on the specific needs and error costs of the application.
0
3
Contributors are:
Who are from:
Tags
Data Science
Related
Confusion Matrix
ROC Curve and ROC AUC
Precision and Recall performance metrics.
F1 Score
Optimizing Criteria in Classification Problems
Satisficing Criteria in Classification Problems
What evaluation metric would you want to maximize based on the following scenario?
Recall of a Classification Model
Precision of a Classification Model
Sensitivity Analysis of a Classification Model
Learning Curve of a Classification Model
Having three evaluation metrics makes it harder for you to quickly choose between two different algorithms, and will slow down the speed with which your team can iterate. True/False?
If you had the four following models, which one would you choose based on the following accuracy, runtime, and memory size criteria?
Coverage
F-Measure
Bayes Error Rate
How to choose between precision and recall?