Ubuntu下keras視覺化遇到pydot&graphviz無法匯入問題

Inaaa發表於2019-02-03

keras.utils.vis_utils模組提供了畫出Keras模型的函式(利用graphviz)

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

安裝如下模組:

pip install pydot-ng 
pip install graphviz 
pip install pydot 

重啟Anaconda 依然報錯:

在OSError: pydot failed to call GraphViz.Please install GraphViz (https://www.graphviz.org/) and ensure that its executables are in the $PATH. 

需配置環境變數, stackoverflow中查到解決方法:

conda install python-graphviz

利用 conda 解決依賴問題。

原連結:
新增連結描述

相關文章