plot_model 解决报错问题
plot_model 解决报错问题
错误合集:
1、no model pydot ,you need to ''pip install pydot''
2、GraphViz's executables not found
3、InvocationException: Program terminated with status: 1. stderr follows: Format: "ps" not recognized. Use one of:
=============================================================
1、电脑配置:
win10
python3.7
2、由于pydot 只适用于较低版本,对于python3 以上版本需要
pip install pydot_ng
pip install GraphViz
3、找到
4、vis_utils.py 修改 将 pydot 全部替换成 pydot_ng
5、官网下载GraphViz软件 并安装
地址:https://www2.graphviz.org/Packages/stable/windows/10/cmake/Release/x64/
6、######### 点击添加 path ############
报错:
InvocationException: Program terminated with status: 1. stderr follows: Format: “ps” not recognized. Use one of:
7、以管理员身份运行 输入dot -v
8、 输入 dot -v 显示的内容,将红色框框的路径 复制
9、在python 执行窗口输入一下代码:(将以上的添加到环境中)
import os
os.environ[“path”] += os.pathsep + r’C:\Users\dell\anaconda3\Library\bin\graphviz\bin’
####### 路径为刚刚复制的路径,进行相应地修改
10 、试试看 可以用了没?
from keras.utils import plot_model
plot_model(model, to_file=‘model.png’)
11、Congrulations to You
Well done ! Finish
本文地址:https://blog.csdn.net/xie_shun/article/details/109052144
上一篇: vue 组件封装 | s-scroll 页面滚动动画
下一篇: mysql 优化变量_MySQL
推荐阅读
-
Win7打开文件提示快捷方式存在问题的解决方法
-
Vue infinite update loop的问题解决
-
Android模拟器无法启动,报错:Cannot set up guest memory ‘android_arm’ Invalid argument的解决方法
-
Android编程向服务器发送请求时出现中文乱码问题的解决方法
-
python抓取并保存html页面时乱码问题的解决方法
-
解决vue 单文件组件中样式加载问题
-
如何解决springboot读取配置文件的中文乱码问题
-
java开发https请求ssl不受信任问题解决方法
-
Spring声明式事务和@Aspect的拦截顺序问题的解决
-
mysql datetime查询异常问题解决