在哪里可以下载 tensorflow.contrib.slim.nets 的预训练权重?

Where can I download pretrained weights for tensorflow.contrib.slim.nets?

我在网上看到了很多地方,甚至在家庭作业的代码中也看到了这些地方似乎只知道在哪里可以下载各种 tf-slim 模型的预训练检查点。

示例:http://download.tensorflow.org/models/inception_resnet_v2_2016_08_30.tar.gz

但是如果你访问download.tensorflow.org,没有返回页面,你可以选择或只知道完全合格的URL来下载检查点文件。

那么如果你不知道文件名(或者你想使用什么架构),那么你怎么能找到这些预训练的权重检查点文件呢?

您必须从 tensorflow/models repository. When you open it, scroll down, and you see the README.md 开始浏览。它有四个模型类别的链接:官方、研究、smaples、教程。

让我们检查一下 official. It has three nets there, mnist, resnet, and wide_deep. Click on resnet,向下滚动到 预训练模型 部分,您会在其中找到指向预训练模型的链接。注意:并非所有模型都有预训练的权重。