SunnerLi / RiR-Tensorflow

Simplified implementation about ResNet in ResNet by tensorflow

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RiR-Tensorflow

Packagist Packagist

Abstract

This is the simplified implementation of the paper - resnet in resnet: generalizing residual architectures[1]. This project adopts 3 different models: usual CNN, ResNet and ResNet in ResNet (RiR) structure. Moreover, I use two dataset to train the models. After surveying, no other tensorflow implementation can be found. As the result, I write this program to evaluate if the idea of RiR is practical. There's another chainer implementation here. Besides, I provide the paper link as well.

Structure

  • Left: the usual CNN
  • Middle: ResNet
  • Right: RiR


Result

First, I use CIFAR10 just like the original paper descript. I train for 4 epoches, and 400 random bagged image are selected in each epoches. The result is shown below:

However, I also use MNIST to train the models. 2 epoches are adopted and 200 random bagged image are selected in each epoches. The result is shown below:

Conclusion

As you can see in the first result image, the RiR structure really does the good job. The ResNet in ResNet structure not only learns the identity mapping but also learns the residual concepts. However, it shows the worse performance in MNIST. The reason I guess is that the RiR structure cannot do very well in the images which don't have complex feature formation. As the result, the usual CNN might be a great model in some cases. The more argument can be found in the ultra deep structure.
For conclusion, the concept of RiR is still a creative idea to combine the property of two traditional methods.

Reference

[1] S. Targ, D. Almeida, and K. Lyman, “RESNET IN RESNET: GENERALIZING RESIDUAL ARCHITECTURES,” arxiv, 2016.

About

Simplified implementation about ResNet in ResNet by tensorflow


Languages

Language:Python 100.0%