Model Pipeline - Flatten layer
This pipeline shows how a Flatten layer changes the shape of data before feeding it into a model. Flatten turns multi-dimensional data into a single long list, making it easier for the model to learn.
This pipeline shows how a Flatten layer changes the shape of data before feeding it into a model. Flatten turns multi-dimensional data into a single long list, making it easier for the model to learn.
Loss
1.2 |*
0.8 | **
0.5 | ***
0.3 | ****
0.25| ****
+---------
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.8 | 0.65 | Loss decreases and accuracy improves as model learns |
| 3 | 0.5 | 0.80 | Model shows good learning progress |
| 4 | 0.3 | 0.90 | Loss is low and accuracy is high, model converging |
| 5 | 0.25 | 0.92 | Training stabilizes with good performance |