AI SeedbankHelp preserve open and free AI for humanity's future

← All models

microsoft_swinv2-tiny-patch4-window16-256

microsoft · View on Hugging Face ↗

Get this model

Download TorrentMagnet Link

Seeders: · Leechers:

Model card

The complete upstream card, rendered from this payload's README.md — the same hash-verified bytes the torrent distributes. Images and off-site links are removed; the original card on Hugging Face carries them.


license: apache-2.0 tags:


Swin Transformer v2 (tiny-sized model)

Swin Transformer v2 model pre-trained on ImageNet-1k at resolution 256x256. It was introduced in the paper Swin Transformer V2: Scaling Up Capacity and Resolution by Liu et al. and first released in this repository.

Disclaimer: The team releasing Swin Transformer v2 did not write a model card for this model so this model card has been written by the Hugging Face team.

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-tiny-patch4-window16-256")
model = AutoModelForImageClassification.from_pretrained("microsoft/swinv2-tiny-patch4-window16-256")

inputs = processor(images=image, return_tensors="pt")
outputs = model(**inputs)
logits = outputs.logits
# model predicts one of the 1000 ImageNet classes
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}
}

Magnet link

Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:

magnet:?xt=urn:btih:325d6ced513116b04b1b04eb7b22db5eef1b0747&dn=microsoft_swinv2-tiny-patch4-window16-256

Open magnet in torrent client · infohash 325d6ced513116b04b1b04eb7b22db5eef1b0747

Files & hashes

PathSizesha1sha256
README.md4.1 KB (4,193 B)761315ff5d2efb70801571cb4fc114d871c4dc4c3a18524dd8b89de84d9f871b11d2ed6fc494b55ade96f20a55ce970d3daefbf4
config.json68.3 KB (69,908 B)cb977a0ff73970df667dc9c546e7fb81eebd6885a8ffc7a807f2c587901f2bbb44b435bede825bbba02a4e7f54e9acf3aec94215
preprocessor_config.json240 B (240 B)fb816e3190d8ed24279c9975f45efeb660493c61e0fb630f4b475b31d7d3c50be22c1901c1bf108c9dfd450c890e98f37881c535
pytorch_model.bin108.2 MB (113,469,463 B)ace55a1fd850ef96b85564b41913de8ddcab12eb6f38b148e61acaee12bd7e9592377177cc83c1eec18b1ec119aeaf0852a79843

Cite this release

Canonical URL
https://aiseedbank.org/models/microsoft_swinv2-tiny-patch4-window16-256/
Slug
microsoft_swinv2-tiny-patch4-window16-256
Infohash
325d6ced513116b04b1b04eb7b22db5eef1b0747
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: microsoft_swinv2-tiny-patch4-window16-256.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorymicrosoft/swinv2-tiny-patch4-window16-256
Revision (pinned)f4d3075206f2ad5eda586c30d6b4d0500f312421
Fetched at2026-09-04T02:46:23Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T02:46:27Z

apache-2.0108.3 MB (113,543,804 bytes)transformerspytorchswinv2image-classificationvisionendpoints_compatiblepaper: 2111.09883