Model Pipeline - Why augmentation multiplies training data
This pipeline shows how image augmentation creates more training data by changing images slightly. This helps the model learn better by seeing many versions of the same image.
This pipeline shows how image augmentation creates more training data by changing images slightly. This helps the model learn better by seeing many versions of the same image.
Loss
1.2 |**************
1.0 |**********
0.8 |********
0.6 |******
0.4 |****
0.2 |**
0.0 +----------------
1 3 5 7 10 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 1.2 | 0.45 | Model starts learning with high loss and low accuracy |
| 3 | 0.8 | 0.65 | Loss decreases and accuracy improves as model sees more augmented data |
| 5 | 0.5 | 0.80 | Model learns better features due to diverse augmented images |
| 7 | 0.35 | 0.88 | Loss continues to decrease, accuracy approaches high values |
| 10 | 0.25 | 0.92 | Model converges with low loss and high accuracy |