Model Pipeline - Gradient Boosting for regression
This pipeline uses gradient boosting to predict continuous values. It builds many small decision trees step-by-step, each one fixing errors from the previous trees, to improve prediction accuracy.
This pipeline uses gradient boosting to predict continuous values. It builds many small decision trees step-by-step, each one fixing errors from the previous trees, to improve prediction accuracy.
Loss
0.9 |*
0.8 | *
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.85 | N/A | Initial tree reduces error but loss is still high |
| 10 | 0.45 | N/A | Loss decreases steadily as more trees are added |
| 50 | 0.20 | N/A | Model fits data better, loss much lower |
| 100 | 0.15 | N/A | Loss improvement slows, model converges |