我收到此错误
我已经安装了keras和其他必需的库,但不知道为什么会出现此错误
from keras.applications import MobileNet
ImportError:无法导入名称“ MobileNet”。
答案 0 :(得分:1)
您应将其导入为from keras.applications.mobilenet import MobileNet
。
答案 1 :(得分:0)
我找到了答案,如果我们使用Keras 2.2.0版本,则在keras安装目录中找不到应用程序模块。 Keras已将应用程序模块外部化到一个名为keras_applications的单独目录中,所有预先训练的模型都将从该目录中导入。
答案 2 :(得分:0)
可以通过升级Keras,Keras-Application版本来解决该问题。请查看this answer以获得帮助。