đ Swin Transformer v2 (base-sized model)
A Swin Transformer v2 model pre - trained on ImageNet - 21k and fine - tuned on ImageNet - 1k at resolution 384x384, offering high - performance image classification capabilities.
đ Quick Start
You can use the raw model for image classification. See the model hub to look for fine - tuned versions on a task that interests you.
⨠Features
- Hierarchical Feature Maps: Builds hierarchical feature maps by merging image patches in deeper layers, suitable for both image classification and dense recognition tasks.
- Linear Computation Complexity: Has linear computation complexity to input image size due to local self - attention computation.
- Improvements in Swin Transformer v2:
- Residual - post - norm method combined with cosine attention for better training stability.
- Log - spaced continuous position bias method for effective transfer to high - resolution tasks.
- Self - supervised pre - training method, SimMIM, to reduce the need for vast labeled images.
đ Documentation
Model description
The Swin Transformer is a type of Vision Transformer. It builds hierarchical feature maps by merging image patches (shown in gray) in deeper layers and has linear computation complexity to input image size due to computation of self - attention only within each local window (shown in red). It can thus serve as a general - purpose backbone for both image classification and dense recognition tasks. In contrast, previous vision Transformers produce feature maps of a single low resolution and have quadratic computation complexity to input image size due to computation of self - attention globally.
Swin Transformer v2 adds 3 main improvements: 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.

Source
Intended uses & limitations
You can use the raw model for image classification. See the model hub to look for fine - tuned versions on a task that interests you.
How to use
Here is how to use this model to classify an image of the COCO 2017 dataset into one of the 1,000 ImageNet classes:
from transformers import AutoImageProcessor, AutoModelForImageClassification
from PIL import Image
import requests
url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = Image.open(requests.get(url, stream=True).raw)
processor = AutoImageProcessor.from_pretrained("microsoft/swinv2-base-patch4-window12to24-192to384-22kto1k-ft")
model = AutoModelForImageClassification.from_pretrained("microsoft/swinv2-base-patch4-window12to24-192to384-22kto1k-ft")
inputs = processor(images=image, return_tensors="pt")
outputs = model(**inputs)
logits = outputs.logits
predicted_class_idx = logits.argmax(-1).item()
print("Predicted class:", model.config.id2label[predicted_class_idx])
For more code examples, we refer to the documentation.
BibTeX entry and citation info
@article{DBLP:journals/corr/abs-2111-09883,
author = {Ze Liu and
Han Hu and
Yutong Lin and
Zhuliang Yao and
Zhenda Xie and
Yixuan Wei and
Jia Ning and
Yue Cao and
Zheng Zhang and
Li Dong and
Furu Wei and
Baining Guo},
title = {Swin Transformer {V2:} Scaling Up Capacity and Resolution},
journal = {CoRR},
volume = {abs/2111.09883},
year = {2021},
url = {https://arxiv.org/abs/2111.09883},
eprinttype = {arXiv},
eprint = {2111.09883},
timestamp = {Thu, 02 Dec 2021 15:54:22 +0100},
biburl = {https://dblp.org/rec/journals/corr/abs-2111-09883.bib},
bibsource = {dblp computer science bibliography, https://dblp.org}
}
đ License
This project is licensed under the Apache - 2.0 license.
Property |
Details |
Model Type |
Vision Transformer for Image Classification |
Training Data |
ImageNet - 21k (pre - training), ImageNet - 1k (fine - tuning) |