= Python XGBoost = [[XGBoost]] is a software implementation of [[Statistics/GradientBoosting|gradient boosting]] for estimating [[Statistics/DecisionTrees|decision trees]]. This article is specifically about the official Python bindings. <> ---- == Installation == The most up-to-date implementation of `xgboost` is available though [[Python/Pip|pip(1)]]. Not that this package has a hard dependency on glibc 2.28, and while formerly the project distributed a variant (`manylinux2014`) with relevant features disabled that could run with older versions, that is being phased out. The only workaround is to compile from source. There is also a variant named `xgboost-cpu` with GPU-related features disabled. ---- == Usage == TODO: document code examples ---- CategoryRicottone CategoryTodoCodeExample