AI Glossary
Precision
Measures how many positive predictions made by a model were actually correct.
Precision
Overview
When people first learn about AI, they often assume that a model is either correct or incorrect.
In reality, evaluating an AI model is usually more complicated than that.
This is where precision becomes important.
Precision helps us understand how trustworthy a model’s positive predictions are. Instead of asking whether the model is generally accurate, precision asks a more specific question:
When the model predicts something is positive, how often is it actually correct?
A helpful way to think about precision is to imagine a spam filter.
If the system marks 100 emails as spam and 95 of them truly are spam, the model has high precision. Most of its positive predictions are correct.
Precision becomes especially important when false alarms are costly. In some situations, incorrectly identifying something as positive can create unnecessary work, confusion, or even financial consequences.
Because of this, many AI systems are evaluated using precision alongside other metrics such as recall and F1 score.
Understanding precision helps us move beyond simple accuracy and toward a more complete understanding of model performance.
Why It Matters
Precision helps organizations determine whether positive predictions can be trusted.
It is particularly important when false positives are expensive, disruptive, or risky.
Real-World Example
An email security system flags incoming messages as spam.
If most emails marked as spam truly are spam messages, the system has high precision.
Related Concepts
- Recall
- F1 Score
- Confusion Matrix
- Model Evaluation
- Classification