如何查看Keras神经网络模型,网络结构

请参考以下链接

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

不好使,

通过以下的方法,问题得到了解决:

https://stackoverflow.com/questions/40632486/dot-exe-not-found-in-path-pydot-on-python-windows-7/43509785

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

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值