Looking for resnet implementation in tensorflow

mac_i picture mac_i · Oct 15, 2016 · Viewed 24.3k times · Source

Are there any resnet implementations in tensorflow? I came across a few (e.g. https://github.com/ry/tensorflow-resnet, https://github.com/xuyuwei/resnet-tf) but these implementations have some bugs (e.g. see the Issues section on the respective github page). I am looking to train imagenet using resnet and looking for tensorflow implementations.

Answer

mdaoust picture mdaoust · Oct 15, 2016

There are some (50/101/152) in tensorflow:models/slim.

The example notebook shows how to get a pre-trained inception running, res-net is probably no different.