tf.keras.utils.plot_model报错,缺失Graphviz pydot以及 GraphViz’s executables not found的解决方法

tensorflow2.0 调用 tf.keras.utils.plot_model()可视化 网络windouws有很多坑
出现一下等各种问题

InvocationException: GraphViz's executables not found
...
ImportError: Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work.

解决办法
下载安装GraphViz(这是一个独立软件)

下载完安装,复制bin文件夹的路径。
tf.keras.utils.plot_model报错,缺失Graphviz pydot以及 GraphViz’s executables not found的解决方法_第1张图片

将GraphViz安装目录的bin目录放到环境变量的path路径中

然后pip install pydot and graphviz

不过我在jupyter环境下运行还是有些问题,用了如下中级解决办法

import os
os.environ["PATH"] += os.pathsep + 'C:/Program Files (x86)/Graphviz2.38/bin/'  #注意修改你的路径

然后就可以显示了
tf.keras.utils.plot_model报错,缺失Graphviz pydot以及 GraphViz’s executables not found的解决方法_第2张图片

你可能感兴趣的:(tensorflow)