ImportError: cannot import name '_obtain_input

2020-02-10 02:10发布

In Keras,

I'm trying to import _obtain_input_shape as follows:

from keras.applications.imagenet_utils import _obtain_input_shape

However, I get the following error:

ImportError: cannot import name '_obtain_input_shape'

The reason I'm trying to import _obtain_input_shape is so that I can determine the input shape(so as to load VGG-Face as follows :

I'm using it to determine the correct input shape of the input tensor as follow:

input_shape = _obtain_input_shape(input_shape,
                                  default_size=224,
                                  min_size=48,
                                  data_format=K.image_data_format(),
                                  require_flatten=include_top)`

Please assist? Thanks in advance.

4条回答
疯言疯语
2楼-- · 2020-02-10 02:40

You don't have to downgrade Keras 2.2.2.

In Keras 2.2.2 there is no _obtain_input_shape method in the keras.applications.imagenet_utils module. You can find it under keras-applications with the modul name keras_applications (underscore).

So you don't have to downgrade your Keras to 2.2.0 just change:

from keras.applications.imagenet_utils import _obtain_input_shape

to

from keras_applications.imagenet_utils import _obtain_input_shape
查看更多
家丑人穷心不美
3楼-- · 2020-02-10 02:42

This issue occured because of the version of keras.

In my case, I was downgrade keras 2.2.2 to 2.2.0, and the problem was solved.

查看更多
Evening l夕情丶
4楼-- · 2020-02-10 02:48

I have found a method that works well. You just use

from keras_applications.imagenet_utils import _obtain_input_shape 

Notice: It is keras_applications instead of keras.application.

查看更多
何必那么认真
5楼-- · 2020-02-10 02:52

for keras 2.2.4: Change the line like below to make it work.

from keras_applications.imagenet_utils import _obtain_input_shape

Note: It is importing from keras_applications and does not from keras.applications as before.

查看更多
登录 后发表回答