What is F-beta score and when is F1 not enough?
mediumAnswer
- generalizes F1 with a weight on recall vs precision. → F1 (equal). (F2) → recall matters 4x more than precision — appropriate for medical screening where missing positives is very costly. (F0.5) → precision matters 4x more — for a spam filter where false positives annoy users.
- F1's implicit assumption is that precision and recall are equally important — often they aren't.
Check yourself — multiple choice
- F-beta is always equal to F1
- F-beta weights recall vs precision; beta > 1 favors recall, beta < 1 favors precision
- F-beta only works for regression
- F-beta requires balanced classes
F-beta weights recall vs precision via β. F2 favors recall; F0.5 favors precision.
#metrics#classification
Practise Supervised Learning
215 interview questions in this topic.
Related questions
- Precision vs recall — when do you optimize each?
- How do you read a confusion matrix and derive the key metrics?
- Why is accuracy a bad primary metric for many real-world problems?
- Macro vs micro vs weighted averaging in multi-class metrics — how do you choose?
- What is Cohen's kappa and why is it useful?
- What is the Matthews Correlation Coefficient (MCC) and when should you use it?