我一直在对模型进行可视化,但出现标题中所示的错误。
我已经搜索了此问题,但是所有人都具有“ dot.exe”。而不是错误中的“点”。
from sklearn.externals.six import StringIO
import pydot
import graphviz
from IPython.display import Image
dot_data = StringIO()
tree.export_graphviz(model, out_file=dot_data,
feature_names=iris.feature_names,
class_names=iris.target_names,
filled=True, rounded=True,
special_characters=True)
(graph,) = pydot.graph_from_dot_data(dot_data.getvalue())
Image(graph.create_png())