Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for resnet implementation in tensorflow

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.

like image 889
mac_i Avatar asked Oct 15 '16 01:10

mac_i


People also ask

What is ResNet TensorFlow?

ResNets are called Residual Networks. ResNet is a special type of Convolutional Neural Network (CNN) that is used for tasks like Image Recognition. ResNet was first introduced in 2015 by Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun in their paper – “Deep Residual Learning for Image Recognition”.


1 Answers

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.

like image 162
mdaoust Avatar answered Sep 22 '22 15:09

mdaoust