xorbits.xgboost.DMatrix#

xorbits.xgboost.DMatrix(data, label=None, missing=None, weight=None, base_margin=None, feature_names=None, feature_types=None)#

Data Matrix used in XGBoost.

DMatrix is an internal data structure that is used by XGBoost, which is optimized for both memory efficiency and training speed. You can construct DMatrix from multiple different sources of data.

This docstring was copied from xgboost.