mmclassification/configs/resnet
Ma Zerun 8f68779cc6
[Docs] Update metafile and Readme (#435)
* Update metafile format.

* Update accuracy of checkpoints.

* Add metafile and readme for tnt.

* Add converted ckpts in swin-transformer.

* Fix tnt ckpt link

* Update swin_transformer metafile
2021-09-18 16:32:46 +08:00
..
README.md [Docs] Update metafile and Readme (#435) 2021-09-18 16:32:46 +08:00
metafile.yml [Docs] Update metafile and Readme (#435) 2021-09-18 16:32:46 +08:00
resnet18_b16x8_cifar10.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet18_b32x8_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet34_b16x8_cifar10.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet34_b32x8_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet50_b16x8_cifar10.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet50_b16x8_cifar10_mixup.py [Feature] Add "mixup" from Bag of Tricks (#160) 2021-02-25 14:06:58 +08:00
resnet50_b16x8_cifar100.py [Feature] Add Cifar100 config (#208) 2021-04-13 20:15:29 +08:00
resnet50_b32x8_coslr_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet50_b32x8_cutmix_imagenet.py [Feature] Add cutmix option (#198) 2021-04-14 21:27:42 +08:00
resnet50_b32x8_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet50_b32x8_label_smooth_imagenet.py [Bug]Fix label smooth bug (#203) 2021-04-13 13:53:56 +08:00
resnet50_b32x8_mixup_imagenet.py [Feature] Add "mixup" from Bag of Tricks (#160) 2021-02-25 14:06:58 +08:00
resnet50_b64x32_warmup_coslr_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet50_b64x32_warmup_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet50_b64x32_warmup_label_smooth_imagenet.py Fix broken _base_ link in a resnet config. (#361) 2021-07-25 23:50:32 -04:00
resnet101_b16x8_cifar10.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet101_b32x8_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet152_b16x8_cifar10.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnet152_b32x8_imagenet.py Rearrange config files (#116) 2020-12-18 16:59:50 +08:00
resnetv1d50_b32x8_imagenet.py fix resnetv1d configs and update ckpts (#288) 2021-06-03 16:30:29 +08:00
resnetv1d101_b32x8_imagenet.py fix resnetv1d configs and update ckpts (#288) 2021-06-03 16:30:29 +08:00
resnetv1d152_b32x8_imagenet.py fix resnetv1d configs and update ckpts (#288) 2021-06-03 16:30:29 +08:00

README.md

Deep Residual Learning for Image Recognition

Introduction

@inproceedings{he2016deep,
  title={Deep residual learning for image recognition},
  author={He, Kaiming and Zhang, Xiangyu and Ren, Shaoqing and Sun, Jian},
  booktitle={Proceedings of the IEEE conference on computer vision and pattern recognition},
  pages={770--778},
  year={2016}
}

Results and models

Cifar10

Model Params(M) Flops(G) Top-1 (%) Top-5 (%) Config Download
ResNet-18-b16x8 11.17 0.56 94.82 config model | log
ResNet-34-b16x8 21.28 1.16 95.34 config model | log
ResNet-50-b16x8 23.52 1.31 95.55 config model | log
ResNet-101-b16x8 42.51 2.52 95.58 config model | log
ResNet-152-b16x8 58.16 3.74 95.76 config model | log

Cifar100

Model Params(M) Flops(G) Top-1 (%) Top-5 (%) Config Download
ResNet-50-b16x8 23.71 1.31 79.90 95.19 config model | log

ImageNet

Model Params(M) Flops(G) Top-1 (%) Top-5 (%) Config Download
ResNet-18 11.69 1.82 69.90 89.43 config model | log
ResNet-34 21.8 3.68 73.62 91.59 config model | log
ResNet-50 25.56 4.12 76.55 93.06 config model | log
ResNet-101 44.55 7.85 77.97 94.06 config model | log
ResNet-152 60.19 11.58 78.48 94.13 config model | log
ResNetV1D-50 25.58 4.36 77.54 93.57 config model | log
ResNetV1D-101 44.57 8.09 78.93 94.48 config model | log
ResNetV1D-152 60.21 11.82 79.41 94.70 config model | log