Model Pipeline - ReduceLROnPlateau
This pipeline shows how a model trains with a learning rate that automatically decreases when the validation loss stops improving. This helps the model learn better by slowing down the learning when needed.
This pipeline shows how a model trains with a learning rate that automatically decreases when the validation loss stops improving. This helps the model learn better by slowing down the learning when needed.
Loss
0.7 |*
0.6 | **
0.5 | **
0.4 | ***
0.3 | ***
0.2 | *
--------
1 2 3 4 5 6 7 8 9 10 Epochs| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.65 | 0.60 | Loss starts high, accuracy moderate |
| 2 | 0.50 | 0.70 | Loss decreases, accuracy improves |
| 3 | 0.40 | 0.78 | Continued improvement |
| 4 | 0.38 | 0.80 | Slight improvement, loss plateau starts |
| 5 | 0.37 | 0.81 | Loss barely improves, plateau detected |
| 6 | 0.36 | 0.82 | Learning rate reduced, loss starts to decrease again |
| 7 | 0.30 | 0.85 | Loss decreases faster after LR reduction |
| 8 | 0.28 | 0.87 | Model continues to improve |
| 9 | 0.27 | 0.88 | Stable improvement |
| 10 | 0.26 | 0.89 | Training converges well |