Model Pipeline - Sequential model API
The Sequential model API in TensorFlow helps us build a simple stack of layers for machine learning. We add layers one after another, and the model learns to make predictions from input data.
The Sequential model API in TensorFlow helps us build a simple stack of layers for machine learning. We add layers one after another, and the model learns to make predictions from input data.
Loss
0.7 |****
0.6 |***
0.5 |**
0.4 |*
0.3 |*
1 2 3 4 5 Epochs| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.65 | 0.60 | Model starts learning, loss is high, accuracy is low |
| 2 | 0.50 | 0.75 | Loss decreases, accuracy improves |
| 3 | 0.40 | 0.82 | Model continues to learn well |
| 4 | 0.35 | 0.86 | Loss decreases steadily, accuracy increases |
| 5 | 0.30 | 0.89 | Good convergence, model is improving |