其他分享
首页 > 其他分享> > Tensorflow问题记录 --pydot Failed to import pydot. You must install pydot and graphviz for pydotprint to

Tensorflow问题记录 --pydot Failed to import pydot. You must install pydot and graphviz for pydotprint to

作者:互联网

Failed to import pydot. You must install pydot and graphviz for pydotprint to work

使用tf.keras.utils.plot_model(model, to_file="model.png", show_shapes=True, show_layer_names=True)绘制可视化模型时出现了上述错误,查找发现问题的解决方式如下:

下载graphviz

更改keras

当安装好pydot之后需要修改环境中的vis_utils.py文件,将文件中的所有pydot替换为pydotplus

再次执行tf.keras.utils.plot_model(model, to_file="model.png", show_shapes=True, show_layer_names=True)正确

标签:show,--,安装,work,graphviz,model,pydot,True
来源: https://www.cnblogs.com/ysfurh/p/14143684.html