ImportError: cannot import name '_obtain_input_shape' from 'keras.applications.imagenet_utils'
时间: 2024-05-28 12:11:41 浏览: 314
使用keras时input_shape的维度表示问题说明
这个错误通常是由于 Keras 版本的问题导致的。可能是你使用的 Keras 版本过低或过高,导致找不到 `_obtain_input_shape` 这个函数。
你可以尝试更新 Keras 到最新版本,或者根据你使用的 Keras 版本来寻找对应的解决方案。如果你使用的是较老的 Keras 版本,可能需要手动定义 `_obtain_input_shape` 函数,或者升级到新版本的 Keras。
阅读全文