收到此错误-FileNotFoundError:在路径

时间:2019-05-14 14:50:58

标签: python machine-learning scikit-learn graphviz pydot

我一直在对模型进行可视化,但出现标题中所示的错误。

我已经搜索了此问题,但是所有人都具有“ 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())

0 个答案:

没有答案