困难中的 ResNet50v2
ResNet50v2 in Keras
我想在 Keras 中加载预训练的 ResNet50v2 模型。我试过了
keras.applications.resnet_v2.ResNet50V2()
这给出了一个错误
Traceback (most recent call last):
File "<input>", line 1, in <module>
AttributeError: module 'keras.applications' has no attribute 'resnet_v2'
在搜索该错误时,this answer 建议使用 keras_applications
包。所以我尝试了
keras_applications.resnet_v2.ResNet50V2()
这给出了错误
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/home/nagabhushan/.local/lib/python3.6/site-packages/keras_applications/resnet_common.py", line 495, in ResNet50V2
**kwargs)
File "/home/nagabhushan/.local/lib/python3.6/site-packages/keras_applications/resnet_common.py", line 348, in ResNet
data_format=backend.image_data_format(),
AttributeError: 'NoneType' object has no attribute 'image_data_format'
在搜索该错误时,this answer 建议使用 keras.applications
包。我很困惑。如何加载 ResNetv2 模型?
注意:我能够加载 ResNet50。只有 ResNet50v2 出现问题
from keras.applications.resnet50 import ResNet50
import keras
keras.applications.resnet_v2.ResNet50V2()
以上代码在jupyter notebook中执行
在安装 Keras 之前,请先安装其后端引擎之一 TensorFlow
- pip 安装 tensorflow
- pip 安装 keras
我想在 Keras 中加载预训练的 ResNet50v2 模型。我试过了
keras.applications.resnet_v2.ResNet50V2()
这给出了一个错误
Traceback (most recent call last):
File "<input>", line 1, in <module>
AttributeError: module 'keras.applications' has no attribute 'resnet_v2'
在搜索该错误时,this answer 建议使用 keras_applications
包。所以我尝试了
keras_applications.resnet_v2.ResNet50V2()
这给出了错误
Traceback (most recent call last):
File "<input>", line 1, in <module>
File "/home/nagabhushan/.local/lib/python3.6/site-packages/keras_applications/resnet_common.py", line 495, in ResNet50V2
**kwargs)
File "/home/nagabhushan/.local/lib/python3.6/site-packages/keras_applications/resnet_common.py", line 348, in ResNet
data_format=backend.image_data_format(),
AttributeError: 'NoneType' object has no attribute 'image_data_format'
在搜索该错误时,this answer 建议使用 keras.applications
包。我很困惑。如何加载 ResNetv2 模型?
注意:我能够加载 ResNet50。只有 ResNet50v2 出现问题
from keras.applications.resnet50 import ResNet50
import keras
keras.applications.resnet_v2.ResNet50V2()
在安装 Keras 之前,请先安装其后端引擎之一 TensorFlow
- pip 安装 tensorflow
- pip 安装 keras