Articles → MACHINE LEARNING → Classification Report In Machine Learning
Classification Report In Machine Learning
Purpose
Components Of A Classification Report
- Precision
- Recall
- F1-Score
- Support
Precision
| Parameter | Description |
|---|
| TP (True Positive) | The model correctly predicted positive. |
| FP (False Positive) | The model incorrectly predicted positive. |
Recall
Actual Positive
Actual Positive means the number of cases in your dataset that truly belong to the positive class, regardless of what the model predicts.
| Parameter | Description |
|---|
| FN (False Negative) | Actual positives that the model missed |
Actual positives (patients with cancer) = 100
Model Predicts:
80 correctly detected (TP = 80)
20 missed (FN = 20)
F1-Score
Support
| Posted By - | Karan Gupta |
| |
| Posted On - | Friday, October 17, 2025 |