Model Pipeline - RNN for text classification
This pipeline uses a Recurrent Neural Network (RNN) to read sentences word by word and decide what category the sentence belongs to, like sorting emails into spam or not spam.
This pipeline uses a Recurrent Neural Network (RNN) to read sentences word by word and decide what category the sentence belongs to, like sorting emails into spam or not spam.
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, accuracy is low but improving |
| 2 | 0.48 | 0.75 | Loss decreases, accuracy improves significantly |
| 3 | 0.38 | 0.82 | Model is learning important patterns |
| 4 | 0.32 | 0.86 | Loss continues to decrease, accuracy rises |
| 5 | 0.28 | 0.89 | Model converges with good accuracy |