Model Pipeline - Data augmentation
Data augmentation is a technique to create more training data by making small changes to existing images. This helps the model learn better by seeing many versions of the same image.
Data augmentation is a technique to create more training data by making small changes to existing images. This helps the model learn better by seeing many versions of the same image.
Loss
1.2 |****
0.9 |***
0.7 |**
0.55|*
0.45|
+------------
Epochs 1 to 5| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 1.2 | 0.45 | Model starts learning with high loss and low accuracy |
| 2 | 0.9 | 0.60 | Loss decreases and accuracy improves as model learns |
| 3 | 0.7 | 0.72 | Model continues to improve with augmented data |
| 4 | 0.55 | 0.80 | Loss lowers and accuracy rises steadily |
| 5 | 0.45 | 0.85 | Model shows good learning progress with augmentation |