请参考以下链接
https://blog.csdn.net/u010412858/article/details/78187215
需要安装以下的包
pip install pydot-ng
pip install graphviz
pip install pydot==1.2.3 #这个很关键
仍然遇到以下的错误
"dot.exe" not found in path.
尝试:
https://blog.csdn.net/chadian3912/article/details/81976956
不好使,
通过以下的方法,问题得到了解决:
2019年10月6日14:39:51遇到了以下的问题
InvocationException: GraphViz's executables not found
ImportError: Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work.
最终的解决方案
import os
os.environ["PATH"] += os.pathsep + 'C:/Program Files (x86)/Graphviz2.38/bin/'
print(model.summary()) # Summarize Model
from keras.utils import plot_model
plot_model(model, to_file='model.png', show_shapes=True, show_layer_names=True) # plot my model
总结:
pip install pydot-ng
pip install graphviz
pip install pydot==1.2.3 #这个很关键
然后去这个网站上下载exe(graphviz-2.38.msi),选择默认的安装路径
https://graphviz.gitlab.io/_pages/Download/Download_windows.html
import os
os.environ["PATH"] += os.pathsep + 'C:/Program Files (x86)/Graphviz2.38/bin/'#这一步需要手动安装一个exe文件
print(seq.summary()) # Summarize Model,能够显示出来网络的结果,但是是文字形式
from keras.utils import plot_model
plot_model(model, to_file='model.png', show_shapes=True, show_layer_names=True) # plot my model