下载预训练的 ResNet、VGG 等 ImageNet 模型(.PB 文件)

Download pretrained ImageNet model of ResNet, VGG, etc. (.PB file)

我已经从 http://download.tensorflow.org/models/image/imagenet/inception-2015-12-05.tgz 下载了 Inception v3 ImageNet 上的预训练模型(在学习 Codelab 上的一个教程时发现了这个 link)。

此 zip 文件包含我可以在 TensorFlow 中直接导入为 GraphDef 的 .pb 文件。

我想知道其他架构是否也有类似的 .pb 文件,例如 ResNet、VGG16、MobileNet 等。如果有,您能否提供其中的 link?

提前致谢。

亲切的问候,

阿杰

您可以在此处找到许多预训练模型:https://github.com/tensorflow/models/tree/master/research/slim#pre-trained-models

对应的代码在这里: https://github.com/tensorflow/models/tree/master/research/slim/nets

以下是下载预训练模型的其他来源:

虽然略有不同,但 Keras 提供了一个访问预训练模型的接口: