Model Pipeline - XGBoost
XGBoost is a smart way to build many small decision trees step-by-step. Each tree learns from the mistakes of the previous ones to make better predictions.
XGBoost is a smart way to build many small decision trees step-by-step. Each tree learns from the mistakes of the previous ones to make better predictions.
Loss
0.7 |***************
0.6 |************
0.5 |*********
0.4 |******
0.3 |****
0.2 |**
0.1 |
+----------------
1 10 50 100 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.65 | 0.60 | Model starts learning, loss is high, accuracy low |
| 10 | 0.40 | 0.75 | Loss decreases, accuracy improves as trees add knowledge |
| 50 | 0.25 | 0.85 | Model is learning well, loss much lower, accuracy higher |
| 100 | 0.20 | 0.88 | Training converges, small improvements in loss and accuracy |