标签:model conda modules col com opened bsp hub mis
from keras.utils import plot_model plot_model(model, to_file="model.png", show_shapes=True, show_layer_names=True)
上面代码执行处做,Assertion Error
解决方案:
This may help for someone who is looking for For Anaconda on Windows 10 64 Bit, Environment: Windows 10 64 Bit, Python 3.5.2, Anaconda 4.2.0 (64-bit)
前三部分可能不需要:
import pydot pydot.find_graphviz()
should show:
{‘dot‘: ‘C:\\ProgramData\\Anaconda3\\Library\\bin\\graphviz\\dot.exe‘, ‘twopi‘: ‘C:\\ProgramData\\Anaconda3\\Library\\bin\\graphviz\\twopi.exe‘, ‘neato‘: ‘C:\\ProgramData\\Anaconda3\\Library\\bin\\graphviz\\neato.exe‘, ‘circo‘: ‘C:\\ProgramData\\Anaconda3\\Library\\bin\\graphviz\\circo.exe‘, ‘fdp‘: ‘C:\\ProgramData\\Anaconda3\\Library\\bin\\graphviz\\fdp.exe‘, ‘sfdp‘: ‘C:\\ProgramData\\Anaconda3\\Library\\bin\\graphviz\\sfdp.exe‘}
标签:model conda modules col com opened bsp hub mis
原文地址:https://www.cnblogs.com/andy-0212/p/10198820.html