Skip to content Skip to sidebar Skip to footer

Keras : Create Mobilenet_v2 Model "attributeerror"

I have successfully built several model based on mobileNet using keras. I noticed that MobileNet_V2 as been added in Keras 2.2.0, but I could not manage to make it work : from ker

Solution 1:

The problem is from the import. The proper way to do this is to do the following :

from keras.applications import MobileNetV2
m = MobileNetV2(weights='imagenet', include_top=False)

Post a Comment for "Keras : Create Mobilenet_v2 Model "attributeerror""