Model Pipeline - Bagging concept
Bagging is a way to make a machine learning model stronger by training many models on different random parts of the data and then combining their answers.
Bagging is a way to make a machine learning model stronger by training many models on different random parts of the data and then combining their answers.
Loss
0.5 |****
0.45|****
0.4 |***
0.35|**
0.3 |*
1 2 3 4 5 Epochs| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.45 | 0.70 | First model trained on first bootstrap sample |
| 2 | 0.43 | 0.72 | Second model trained on different bootstrap sample |
| 3 | 0.40 | 0.74 | Third model trained, overall ensemble accuracy improves |
| 4 | 0.38 | 0.76 | More models added, ensemble becomes stronger |
| 5 | 0.36 | 0.78 | Loss decreases steadily, accuracy increases |