我可以使用tree.export_graphviz 函数将 GBDT的结构导出到图像:
```Python3
from sklearn.datasets import load_iris
from sklearn import tree
from sklearn.ensemble import GradientBoostingClassifier
clf = GradientBoostingClassifier(n_estimators=1) # set to 1 for the sake of simplicity
iris = load_iris()
clf = clf.fit(iris.data, iris.target)
tree.export_graphviz(clf.estimators_[0,0], out_file='tree.dot')
check_call(['dot','-Tpng','tree.dot','-o','tree.png'])
```
我想知道value
叶子上有什么?我怎样才能获得它们?
我已经尝试过apply
anddecision_function
功能,但都不起作用。