keras 未找到模块错误:没有名为“classification_models.resnet”的模块

ubby3x7f  于 2022-11-13  发布在  其他
关注(0)|答案(1)|浏览(176)

第一个
我无法在Google colab上导入预先培训的ResNet18模型。请帮助

hmae6n7t

hmae6n7t1#

您可以通过tf.keras.applications API轻松访问所有ResNet(ResNet50, ResNet101, ResNet152)模型及其preprocess_input(),如下所示:

from tensorflow.keras.applications.resnet50 import ResNet50
from tensorflow.keras.applications.resnet50 import preprocess_input

有关如何使用和应用ResNet模型的详细信息,请查看this链接。

相关问题