Xgboost:打印“所有”功能的重要性

时间:2019-07-15 09:12:38

标签: xgboost

我使用Xgboost,希望打印各种功能的重要性。我使用以下代码:

 from xgboost import plot_importance
 plt.rcParams["figure.figsize"] = (14, 12)
 plot_importance(booster=model._Booster)

我注意到的是,只有当特征为非零时,它才显示出特征的杂质。

Is there a way to make it print importance of all even if some of them have zero importance?

0 个答案:

没有答案