dmlc / XGBoost.jl

XGBoost Julia Package
Other
288 stars 110 forks source link

Categorical input data support #205

Open Moelf opened 2 weeks ago

Moelf commented 2 weeks ago

what's the state on this? it seems that Python package has some limited support for it: https://xgboost.readthedocs.io/en/stable/tutorials/categorical.html

ExpandingMan commented 2 weeks ago

The only reference I see to this in the C lib is here. I'm somewhat doubtful that this actually does anything, if not they probably added the feature in python, which would not be unprecedented.

Moelf commented 2 weeks ago

if I have to guess I'd say all they are doing is saves you the trouble of manually one hot encoding a categorical columne into N columns of Bools?