Model Evaluation · Level 2 of 5
F1 Score
The harmonic mean of precision and recall.
It balances two rates while ignoring true negatives.
Listen to the definition and example
Audio transcript
F1 Score. The harmonic mean of precision and recall. It balances two rates while ignoring true negatives. For example: A classifier with high precision but low recall receives a reduced combined score.
Explore this concept
A useful analogy
A balance that is pulled down when either of its two sides is weak.
Why it matters
This helps you ask what a reported score counts and which errors it can hide.
Technical detail
F1 = 2PR / (P + R) = 2TP / (2TP + FP + FN), where defined. Multiclass macro and micro averaging differ.
Common misconception
F1 is not an arithmetic average and does not account for true negatives.
Related concepts
Quick recall question
Try answering before looking back at the definition.