gpt4 book ai didi

python - 在 jupyter notebook 中显示 scikit 决策 TreeMap

转载 作者:太空狗 更新时间:2023-10-30 02:24:19 26 4
gpt4 key购买 nike

我目前正在创建一个机器学习 jupyter 笔记本作为一个小项目,并希望显示我的决策树。但是,我能找到的所有选项都是导出图形然后加载图片,这相当复杂。

所以想问问有没有办法不用导出加载图形,直接显示我的决策树。

最佳答案

您可以直接使用IPython.display 显示树:

import graphviz
from sklearn.tree import DecisionTreeRegressor, DecisionTreeClassifier,export_graphviz
from sklearn.datasets import make_regression

# Generate a simple dataset
X, y = make_regression(n_features=2, n_informative=2, random_state=0)
clf = DecisionTreeRegressor(random_state=0, max_depth=2)
clf.fit(X, y)
# Visualize the tree
from IPython.display import display
display(graphviz.Source(export_graphviz(clf)))

关于python - 在 jupyter notebook 中显示 scikit 决策 TreeMap ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54370065/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com