/XGBoostLSS

An extension of XGBoost to probabilistic forecasting

Primary LanguagePythonApache License 2.0Apache-2.0

XGBoostLSS - An extension of XGBoost to probabilistic forecasting

We propose a new framework of XGBoost that predicts the entire conditional distribution of a univariate response variable. In particular, XGBoostLSS models all moments of a parametric distribution, i.e., mean, location, scale and shape (LSS), instead of the conditional mean only. Choosing from a wide range of continuous, discrete, and mixed discrete-continuous distribution, modelling and predicting the entire conditional distribution greatly enhances the flexibility of XGBoost, as it allows to create probabilistic forecasts from which prediction intervals and quantiles of interest can be derived.

News

๐Ÿ’ฅ [2022-01-03] XGBoostLSS now supports estimation of the Gamma distribution.
๐Ÿ’ฅ [2021-12-22] XGBoostLSS now supports estimating the full predictive distribution via Expectile Regression.
๐Ÿ’ฅ [2021-12-20] XGBoostLSS is initialized with suitable starting values to improve convergence of estimation.
๐Ÿ’ฅ [2021-12-04] XGBoostLSS now supports automatic derivation of Gradients and Hessians.
๐Ÿ’ฅ [2021-12-02] XGBoostLSS now supports pruning during hyperparameter optimization.
๐Ÿ’ฅ [2021-11-14] XGBoostLSS v0.1.0 is released!

Features

โœ… Simultaneous updating of all distributional parameters.
โœ… Automatic derivation of Gradients and Hessian of all distributional parameters using PyTorch.
โœ… Automated hyper-parameter search, including pruning, is done via Optuna.
โœ… The output of XGBoostLSS is explained using SHapley Additive exPlanations.
โœ… XGBoostLSS is available in Python.

Work in Progress

๐Ÿšง Functions that facilitates the choice and evaluation of a candidate distribution (e.g., quantile residual plots, ...).
๐Ÿšง Calling XGBoostLSS from R via the reticulate package.
๐Ÿšง Estimation of full predictive distribution without relying on a distributional assumption.

Available Distributions

Currently, XGBoostLSS supports the following distributions. More continuous distributions, as well as discrete, mixed discrete-continuous and zero-inflated distributions are to come soon.

Some Notes

Stabilization

Since XGBoostLSS updates the parameter estimates by optimizing Gradients and Hessians, it is important that these are comparable in magnitude for all distributional parameters. Due to variability regarding the ranges, the estimation of Gradients and Hessians might become unstable so that XGBoostLSS might not converge or might converge very slowly. To mitigate these effects, we have implemented a stabilization of Gradients and Hessians.

An additional option to improve convergence can be to standardize the (continuous) response variable, e.g., y/100. This is especially useful if the range of the response differs strongly from the range of Gradients and Hessians. Both, the in-built stabilization, and the standardization of the response need to be carefully considered given the data at hand.

Runtime

Since XGBoostLSS updates all distributional parameters simultaneously, it requires training [number of iterations] * [number of distributional parameters] trees. Hence, the runtime of XGBoostLSS is generally slightly higher as compared to XGBoost, which requires training [number of iterations] trees only.

Feedback

Please provide feedback on how to improve XGBoostLSS, or if you request additional distributions to be implemented, by opening a new issue.

Installation

$ pip install git+https://github.com/StatMixedML/XGBoostLSS.git

How to use

We refer to the examples section for example notebooks.

Reference Paper

Mรคrz, Alexander (2019) "XGBoostLSS - An extension of XGBoost to probabilistic forecasting".