I am using python 3.6.3 on a Windows 10 machine. I installed pydot and graphviz using pip install via:
py -m pip install pydot py -m pip install graphviz
I also went to the graphviz website and downloaded and installed the Windows version here: http://www.graphviz.org/Download_windows.php , which is installed by default for program files (x86). But when I am going to sketch my model in keras, I still get a message that I need to install pydot and graphviz and that the import failed. I can do
import pydot import graphviz
on my python console just fine they don't cause errors. What else should I do to be able to display my neural network?
source share