Swin-Transformer V2¶
简介¶
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

摘要¶
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.
使用方式¶
from mmpretrain import inference_model
predict = inference_model('swinv2-tiny-w8_3rdparty_in1k-256px', 'demo/bird.JPEG')
print(predict['pred_class'])
print(predict['pred_score'])
import torch
from mmpretrain import get_model
model = get_model('swinv2-tiny-w8_3rdparty_in1k-256px', pretrained=True)
inputs = torch.rand(1, 3, 224, 224)
out = model(inputs)
print(type(out))
# To extract features.
feats = model.extract_feat(inputs)
print(type(feats))
Prepare your dataset according to the docs.
测试:
python tools/test.py configs/swin_transformer_v2/swinv2-tiny-w8_16xb64_in1k-256px.py https://download.openmmlab.com/mmclassification/v0/swin-v2/swinv2-tiny-w8_3rdparty_in1k-256px_20220803-e318968f.pth
Models and results¶
Pretrained models¶
模型 |
Params (M) |
Flops (G) |
配置文件 |
下载 |
---|---|---|---|---|
|
87.92 |
8.51 |
||
|
196.74 |
19.04 |
Models with * are converted from the official repo. The config files of these models are only for inference. We haven’t reproduce the training results.
Image Classification on ImageNet-1k¶
模型 |
预训练 |
Params (M) |
Flops (G) |
Top-1 (%) |
Top-5 (%) |
配置文件 |
下载 |
---|---|---|---|---|---|---|---|
|
从头训练 |
28.35 |
4.35 |
81.76 |
95.87 |
||
|
从头训练 |
28.35 |
4.40 |
82.81 |
96.23 |
||
|
从头训练 |
49.73 |
8.45 |
83.74 |
96.60 |
||
|
从头训练 |
49.73 |
8.57 |
84.13 |
96.83 |
||
|
从头训练 |
87.92 |
14.99 |
84.20 |
96.86 |
||
|
从头训练 |
87.92 |
15.14 |
84.60 |
97.05 |
||
|
ImageNet-21k |
87.92 |
15.14 |
86.17 |
97.88 |
||
|
ImageNet-21k |
87.92 |
34.07 |
87.14 |
98.23 |
||
|
ImageNet-21k |
196.75 |
33.86 |
86.93 |
98.06 |
||
|
ImageNet-21k |
196.75 |
76.20 |
87.59 |
98.27 |
Models with * are converted from the official repo. The config files of these models are only for inference. We haven’t reproduce the training results.
引用¶
@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}
}