在tensorflow中寻找resnet实现

时间:2016-10-15 01:30:55

标签: tensorflow resnet

tensorflow中是否有任何resnet实现?我遇到了一些(例如https://github.com/ry/tensorflow-resnethttps://github.com/xuyuwei/resnet-tf)但这些实现有一些错误(例如,请参阅相应github页面上的“问题”部分)。我希望使用resnet训练imagenet并寻找tensorflow实现。

3 个答案:

答案 0 :(得分:5)

tensorflow:models/slim中有一些(50/101/152)。

example notebook显示了如何获得预先训练的inception正在运行,res-net可能没有什么不同。

答案 1 :(得分:3)

我用tensorflow实现了一个cifar10版本的ResNet。 ResNet-32,ResNet-56和ResNet-110的验证错误分别为6.7%,6.5%和6.2%。 (您可以轻松地将层数修改为超参数。)

我试图与新的ResNet粉丝保持友好,并且写得很直接。您可以直接运行cifar10_train.py文件而无需任何下载。

https://github.com/wenxinxu/resnet_in_tensorflow

答案 2 :(得分:-1)

我使用ronnie.ai和keras实现了Resnet。这两个工具都很棒。 虽然ronnie从头开始更容易。