Model Pipeline - Gradient Boosting (GBM)
Gradient Boosting builds a strong prediction model by combining many small decision trees. Each tree learns from the mistakes of the previous ones, improving the overall accuracy step by step.
Gradient Boosting builds a strong prediction model by combining many small decision trees. Each tree learns from the mistakes of the previous ones, improving the overall accuracy step by step.
Loss
0.5 |***************
0.4 |**********
0.3 |*******
0.2 |****
0.1 |**
+----------------
1 10 50 100 Epochs
| Epoch | Loss ↓ | Accuracy ↑ | Observation |
|---|---|---|---|
| 1 | 0.45 | 0.65 | Initial tree reduces error significantly |
| 10 | 0.30 | 0.78 | Model improves as more trees are added |
| 50 | 0.18 | 0.88 | Loss steadily decreases, accuracy rises |
| 100 | 0.12 | 0.92 | Model converges with good accuracy |