Machine Learning

LightGBM

Light Gradient Boosting Machine — Microsoft's gradient boosting framework optimized for speed and efficiency. LightGBM uses histogram-based splitting and leaf-wise growth for faster training.

Why It Matters

LightGBM trains significantly faster than XGBoost on large datasets while achieving comparable accuracy, making it preferred for large-scale production systems.

Example

Processing a dataset with 100 million rows and 500 features in minutes rather than hours, enabling rapid iteration during model development.

Think of it like...

Like a sports car version of gradient boosting — same destination (accurate predictions), but gets there much faster.

Related Terms