Shortcuts

Swin Transformer V2

Introduction

Swin Transformer V2 is a work on the scale up visual model based on Swin Transformer. In the visual field, We can not increase the performance by just simply scaling up the visual model like NLP models. The possible reasons mentioned in the article are:

  • Training instability when increasing the vision model

  • Migrating the model trained at low resolution to a larger scale resolution task

  • Too mush GPU memory

To solve it, The following method improvements are proposed in the paper:

  • post normalization: layer normalization after self-attention layer and MLP block

  • scaled cosine attention approach: use cosine similarity to calculate the relationship between token pairs

  • log-spaced continuous position bias: redefine relative position encoding

Abstract

Show the detailed Abstract

Large-scale NLP models have been shown to significantly improve the performance on language tasks with no signs of saturation. They also demonstrate amazing few-shot capabilities like that of human beings. This paper aims to explore large-scale models in computer vision. We tackle three major issues in training and application of large vision models, including training instability, resolution gaps between pre-training and fine-tuning, and hunger on labelled data. Three main techniques are proposed: 1) a residual-post-norm method combined with cosine attention to improve training stability; 2) A log-spaced continuous position bias method to effectively transfer models pre-trained using low-resolution images to downstream tasks with high-resolution inputs; 3) A self-supervised pre-training method, SimMIM, to reduce the needs of vast labeled images. Through these techniques, this paper successfully trained a 3 billion-parameter Swin Transformer V2 model, which is the largest dense vision model to date, and makes it capable of training with images of up to 1,536×1,536 resolution. It set new performance records on 4 representative vision tasks, including ImageNet-V2 image classification, COCO object detection, ADE20K semantic segmentation, and Kinetics-400 video action classification. Also note our training is much more efficient than that in Google’s billion-level visual models, which consumes 40 times less labelled data and 40 times less training time.


How to use it?

>>> import torch
>>> from mmcls.apis import init_model, inference_model
>>>
>>> model = init_model('configs/swin_transformer_v2/swinv2-tiny-w16_16xb64_in1k-256px.py', 'https://download.openmmlab.com/mmclassification/v0/swin-v2/swinv2-tiny-w16_3rdparty_in1k-256px_20220803-9651cdd7.pth')
>>> predict = inference_model(model, 'demo/demo.JPEG')
>>> print(predict['pred_class'])
sea snake
>>> print(predict['pred_score'])
0.9504518508911133

For more configurable parameters, please refer to the API.

Results and models

ImageNet-21k

The pre-trained models on ImageNet-21k are used to fine-tune, and therefore don’t have evaluation results.

Model

resolution

Params(M)

Flops(G)

Download

Swin-B*

192x192

87.92

8.51

model

Swin-L*

192x192

196.74

19.04

model

ImageNet-1k

Model

Pretrain

resolution

window

Params(M)

Flops(G)

Top-1 (%)

Top-5 (%)

Config

Download

Swin-T*

From scratch

256x256

8x8

28.35

4.35

81.76

95.87

config

model

Swin-T*

From scratch

256x256

16x16

28.35

4.4

82.81

96.23

config

model

Swin-S*

From scratch

256x256

8x8

49.73

8.45

83.74

96.6

config

model

Swin-S*

From scratch

256x256

16x16

49.73

8.57

84.13

96.83

config

model

Swin-B*

From scratch

256x256

8x8

87.92

14.99

84.2

96.86

config

model

Swin-B*

From scratch

256x256

16x16

87.92

15.14

84.6

97.05

config

model

Swin-B*

ImageNet-21k

256x256

16x16

87.92

15.14

86.17

97.88

config

model

Swin-B*

ImageNet-21k

384x384

24x24

87.92

34.07

87.14

98.23

config

model

Swin-L*

ImageNet-21k

256X256

16x16

196.75

33.86

86.93

98.06

config

model

Swin-L*

ImageNet-21k

384x384

24x24

196.75

76.2

87.59

98.27

config

model

Models with * are converted from the official repo. The config files of these models are only for validation. We don’t ensure these config files’ training accuracy and welcome you to contribute your reproduction results.

ImageNet-21k pretrained models with input resolution of 256x256 and 384x384 both fine-tuned from the same pre-training model using a smaller input resolution of 192x192.

Citation

@article{https://doi.org/10.48550/arxiv.2111.09883,
  doi = {10.48550/ARXIV.2111.09883},
  url = {https://arxiv.org/abs/2111.09883},
  author = {Liu, Ze and Hu, Han and Lin, Yutong and Yao, Zhuliang and Xie, Zhenda and Wei, Yixuan and Ning, Jia and Cao, Yue and Zhang, Zheng and Dong, Li and Wei, Furu and Guo, Baining},
  keywords = {Computer Vision and Pattern Recognition (cs.CV), FOS: Computer and information sciences, FOS: Computer and information sciences},
  title = {Swin Transformer V2: Scaling Up Capacity and Resolution},
  publisher = {arXiv},
  year = {2021},
  copyright = {Creative Commons Attribution 4.0 International}
}
Read the Docs v: dev-1.x
Versions
latest
stable
1.x
dev-1.x
Downloads
On Read the Docs
Project Home
Builds

Free document hosting provided by Read the Docs.