【发布时间】:2018-06-04 17:43:18
【问题描述】:
我正在尝试使用 Keras 绘制 VGG16 架构图。但是,我看到下面带有None 的图像,一些尺寸。 None 是什么意思,这是一个错误吗?
from keras.utils import plot_model
model = VGG19(include_top=True, weights='imagenet')
#print(model.summary())
plot_model(model, to_file='model_Vgg19.png',show_shapes=True)
我可以看到这是 Keras 中的一个已知问题:https://github.com/keras-team/keras/issues/1877。
【问题讨论】:
标签: python deep-learning keras