All Projects → twtygqyy → resnet-cifar10

twtygqyy / resnet-cifar10

Licence: other
ResNet for Cifar10

Projects that are alternatives of or similar to resnet-cifar10

ReZero-ResNet
Unofficial pytorch implementation of ReZero in ResNet
Stars: ✭ 23 (+9.52%)
Mutual labels:  resnet, residual-networks, cifar10
wideresnet-tensorlayer
Wide Residual Networks implemented in TensorLayer and TensorFlow.
Stars: ✭ 44 (+109.52%)
Mutual labels:  resnet, residual-networks
Keras-CIFAR10
practice on CIFAR10 with Keras
Stars: ✭ 25 (+19.05%)
Mutual labels:  resnet, cifar10
Bsconv
Reference implementation for Blueprint Separable Convolutions (CVPR 2020)
Stars: ✭ 84 (+300%)
Mutual labels:  resnet, cifar10
Retinal-Disease-Diagnosis-With-Residual-Attention-Networks
Using Residual Attention Networks to diagnose retinal diseases in medical images
Stars: ✭ 14 (-33.33%)
Mutual labels:  resnet, residual-networks
general backbone
No description or website provided.
Stars: ✭ 37 (+76.19%)
Mutual labels:  resnet, data-augmentation
Resnet
Tensorflow ResNet implementation on cifar10
Stars: ✭ 10 (-52.38%)
Mutual labels:  resnet, cifar10
Chainer Cifar10
Various CNN models for CIFAR10 with Chainer
Stars: ✭ 134 (+538.1%)
Mutual labels:  resnet, cifar10
Pytorch Speech Commands
Speech commands recognition with PyTorch
Stars: ✭ 128 (+509.52%)
Mutual labels:  resnet, cifar10
Resnet On Cifar10
Reimplementation ResNet on cifar10 with caffe
Stars: ✭ 123 (+485.71%)
Mutual labels:  resnet, cifar10
Pytorch Classification
Classification with PyTorch.
Stars: ✭ 1,268 (+5938.1%)
Mutual labels:  resnet, cifar10
caffe-wrn-generator
Caffe Wide-Residual-Network (WRN) Generator
Stars: ✭ 19 (-9.52%)
Mutual labels:  resnet, residual-networks
Resnet Cifar10 Caffe
ResNet-20/32/44/56/110 on CIFAR-10 with Caffe
Stars: ✭ 161 (+666.67%)
Mutual labels:  resnet, cifar10
Keras-MultiClass-Image-Classification
Multiclass image classification using Convolutional Neural Network
Stars: ✭ 48 (+128.57%)
Mutual labels:  resnet, data-augmentation
TensorMONK
A collection of deep learning models (PyTorch implemtation)
Stars: ✭ 21 (+0%)
Mutual labels:  resnet
KoEDA
Korean Easy Data Augmentation
Stars: ✭ 62 (+195.24%)
Mutual labels:  data-augmentation
deeplearning-mpo
Replace FC2, LeNet-5, VGG, Resnet, Densenet's full-connected layers with MPO
Stars: ✭ 26 (+23.81%)
Mutual labels:  cifar10
keras-deep-learning
Various implementations and projects on CNN, RNN, LSTM, GAN, etc
Stars: ✭ 22 (+4.76%)
Mutual labels:  cifar10
ModelZoo.pytorch
Hands on Imagenet training. Unofficial ModelZoo project on Pytorch. MobileNetV3 Top1 75.64🌟 GhostNet1.3x 75.78🌟
Stars: ✭ 42 (+100%)
Mutual labels:  resnet
MVCNN-PyTorch
No description or website provided.
Stars: ✭ 79 (+276.19%)
Mutual labels:  resnet

Residual Networks Test

============================

Original Paper: "Deep Residual Learning for Image Recognition"(http://arxiv.org/abs/1512.03385) and "Identity Mappings in Deep Residual Networks"(http://arxiv.org/abs/1603.05027)

By Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun.

Microsoft Research Asia (MSRA).

Introduction

This repository contains the models for testing resnet networks on cifar-10

  • 50000 samples for training, batch size 250, 200 iterations for 1 epoch, 64000 iterations in total
  • 10000 samples for testing, test batch size 100 and 100 test iterations reduce learning rate after 32000 iters by factor of 10 then another factor of 10 after anohter 16000 iters

Notes

Data augmentation applied (please find the data augmentation fork in https://github.com/twtygqyy/caffe-augmentation):

max_color_shift = 5

contrast_variation = 0.8 ~ 1.2

max_brightness_shift = 5 

zero-padding with 2 pixels for each side and crop with 32x32

Please download the training images with zero-padding here Google Drive

Result

  • Resnet-20: best model achieved 0.927 accuracy on test datasets for single round and single crop

  • Resnet-32: best model achieved 0.9364 accuracy on test datasets for single round and single crop

  • Resnet-56: best model achieved 0.9418 accuracy on test datasets for single round and single crop

  • Resnet-56: 0.944 accuracy on test datasets with LSUV initializer (https://github.com/ducha-aiki/LSUVinit/blob/master/tools/extra/lsuv_init.py/)

  • WRN-28-10 ["Wide Residual Networks" (http://arxiv.org/abs/1605.07146)]: best model achieved 0.958 accuracy on test datasets for single round and single crop

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].