/cifar-10_resnet_tensorflow

resnet Identity Mappings in tensorflow

Primary LanguageJupyter Notebook

This implementation of resnet and its variants is designed to be straightforward and friendly to new ResNet users. You can train a resnet on cifar10 by downloading and running the code. ####If you like the code, please star it! You are welcome to post questions and suggestions on my github. in this repo i implemented Identity Mappings introduce by microsoft researchers. and i also implemented new res block resnet with elu.

IMPORTANT PAPERS

  1. https://arxiv.org/pdf/1512.03385.pdf (orginal resnet paper)
  2. https://arxiv.org/pdf/1603.05027.pdf (Identity Mappings)
  3. https://arxiv.org/pdf/1604.04112.pdf (resnet with elu)
  4. https://arxiv.org/pdf/1502.01852.pdf (weight initialization)
  5. https://arxiv.org/pdf/1502.03167.pdf (Batch Normalization)
  6. https://arxiv.org/abs/1409.5185 (data augmentation)