Model Pipeline - Evaluation and confusion matrix
This pipeline shows how a computer vision model is evaluated using a confusion matrix. It helps us understand how well the model predicts different classes by comparing predictions to true labels.
This pipeline shows how a computer vision model is evaluated using a confusion matrix. It helps us understand how well the model predicts different classes by comparing predictions to true labels.
Loss
1.2 |*
0.9 | *
0.7 | *
0.5 | *
0.4 | *
+---------
1 2 3 4 5 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 1.2 | 0.45 | Model starts learning, accuracy low |
| 2 | 0.9 | 0.60 | Loss decreases, accuracy improves |
| 3 | 0.7 | 0.72 | Model learns better features |
| 4 | 0.5 | 0.80 | Good improvement in accuracy |
| 5 | 0.4 | 0.85 | Model converges with good accuracy |