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

keras 模型可视化:plot_model

首先安装 pydot_ng:pip install pydot_ng

然后安装 graphviz:从 https://graphviz.gitlab.io/download/ 下载 windows 二进制安装版本——选择graphviz-2.38.msi 安装

ImportError : Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work._第1张图片

安装后还要把  graphviz 安装路径添加到环境变量中

ImportError : Failed to import pydot. You must install pydot and graphviz for `pydotprint` to work._第2张图片

在程序中添加下列两行代码即可画出模型结构图:

from keras.utils import plot_model
plot_model(model, to_file='model.png')

(如果还报错误,重启下 spyder 即可)

你可能感兴趣的:(CV)