当我尝试使用plot_model()绘制模型的架构时,我收到以下错误:
属性错误:'模型'对象没有属性' _container_nodes'
这是我的代码:
from keras.utils import plot_model
plot_model(my_resnet, to_file='model.png')
我已经使用pip安装了pydot和graphviz,并通过apt-get安装了graphviz。
在github上有一些答案说这是在较新版本的Keras中引入的,但没有提供解决方法。