我试图运行的代码应该是识别不同类型的图像类别.该代码是VGG16,我有以下错误.当然,我试图安装和导入目录(keras等.)和错误仍然存在.将不胜感激的帮助.谢谢.这是标记为第一个月这就是错误AttributeError: module 'keras.applications' has no attribute 'VGG16'个
AttributeError: module 'keras.applications' has no attribute 'VGG16'
krcsximq1#
应该是applications.vgg16.VGG16(...)。
applications.vgg16.VGG16(...)
dy2hfwbg2#
我用from tensorflow.keras import applications而不是from keras import applications解决了同样的问题
from tensorflow.keras import applications
from keras import applications
gcuhipw93#
from tensorflow import keras as K., along with from tensorflow.keras import applications
字符串这也可以帮助。
3条答案
按热度按时间krcsximq1#
应该是
applications.vgg16.VGG16(...)
。dy2hfwbg2#
我用
from tensorflow.keras import applications
而不是from keras import applications
解决了同样的问题gcuhipw93#
字符串
这也可以帮助。