Python XGBoost
XGBoost is a software implementation of gradient boosting for estimating decision trees. This article is specifically about the official Python bindings.
Contents
Installation
The most up-to-date implementation of xgboost is available though 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