You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of the bug
For a machine using only XGBoostClassifier (e.g. xgbm) I can extract feature_importances(xgbm), but for a pipeline machine like one hot encoder |> XGBoostClassifier it seems to exist a bug.
I've tried to have some checks like reports_feature_importances(xgbm.model.xg_boost_classifier) (results in true) but both codes below lead to errors:
Description of the bug
For a machine using only XGBoostClassifier (e.g.
xgbm
) I can extractfeature_importances(xgbm)
, but for a pipeline machine like one hot encoder |> XGBoostClassifier it seems to exist a bug.I've tried to have some checks like
reports_feature_importances(xgbm.model.xg_boost_classifier)
(results intrue
) but both codes below lead to errors:feature_importances(xgbm)
>> Results nothingfeature_importances(xgbm.model.xg_boost_classifier)
>> Error Message:To Reproduce
Versions
julia\environments\v1.9
MLJ v0.20.0
Any idea if it's a bug or if I should write something different in the code?
Thanks a lot for the support!
The text was updated successfully, but these errors were encountered: