Model Pipeline - CNN architecture review
This pipeline shows how a Convolutional Neural Network (CNN) learns to recognize images by processing raw pictures, extracting features, training on those features, and then making predictions.
This pipeline shows how a Convolutional Neural Network (CNN) learns to recognize images by processing raw pictures, extracting features, training on those features, and then making predictions.
Loss
2.0 |****
1.5 |***
1.0 |**
0.5 |*
0.0 +----
1 2 3 4 5 Epochs| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 1.85 | 0.35 | Model starts learning, accuracy low, loss high |
| 2 | 1.20 | 0.55 | Loss decreases, accuracy improves |
| 3 | 0.85 | 0.70 | Model learns important features |
| 4 | 0.60 | 0.80 | Good progress, model getting better |
| 5 | 0.45 | 0.85 | Loss low, accuracy high, training converging |