Model Pipeline - Data transforms
This pipeline shows how raw data is changed step-by-step to prepare it for a machine learning model. We clean, resize, and convert images into numbers the model can understand.
This pipeline shows how raw data is changed step-by-step to prepare it for a machine learning model. We clean, resize, and convert images into numbers the model can understand.
Loss
1.2 |****
1.0 |***
0.8 |**
0.6 |*
0.4 |****
1 2 3 4 5 Epochs
| 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 more training |
| 4 | 0.5 | 0.80 | Loss lowers further and accuracy reaches 80% |
| 5 | 0.4 | 0.85 | Training converges with good accuracy and low loss |