从OneVsRestClassifier获取随机森林feature_importances_以进行多标签分类

时间:2015-06-30 11:27:49

标签: python scikit-learn random-forest

我正在使用OneVsRestClassifier来解决多标签分类问题。我正在将RandomForestClassifier传递给它。

tailhead.bat tailhead -file=%pathToFile% -begin=-3|find  "%message%"

如何在OneVsRestClassifier中获取每个随机森林的功能重要性?

1 个答案:

答案 0 :(得分:5)

OneVsRestClassifier有一个属性estimators_:n_classes估算器列表

所以要获得i RandomForest

的特征重要性
print clf.estimators_[i].feature_importances_