nvidia_segformer-b1-finetuned-ade-512-512
nvidia · View on Hugging Face ↗
Get this model
Seeders: 1 · Leechers: 0
Observed 2026-09-02T13:56:39Z via announce.aitorrent.org:7070.
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: other tags:
- vision
- image-segmentation datasets:
- scene_parse_150 widget:
- src: https://huggingface.co/datasets/hf-internal-testing/fixtures_ade20k/resolve/main/ADE_val_00000001.jpg example_title: House
- src: https://huggingface.co/datasets/hf-internal-testing/fixtures_ade20k/resolve/main/ADE_val_00000002.jpg example_title: Castle
SegFormer (b1-sized) model fine-tuned on ADE20k
SegFormer model fine-tuned on ADE20k at resolution 512x512. It was introduced in the paper SegFormer: Simple and Efficient Design for Semantic Segmentation with Transformers by Xie et al. and first released in this repository.
Disclaimer: The team releasing SegFormer did not write a model card for this model so this model card has been written by the Hugging Face team.
Model description
SegFormer consists of a hierarchical Transformer encoder and a lightweight all-MLP decode head to achieve great results on semantic segmentation benchmarks such as ADE20K and Cityscapes. The hierarchical Transformer is first pre-trained on ImageNet-1k, after which a decode head is added and fine-tuned altogether on a downstream dataset.
Intended uses & limitations
You can use the raw model for semantic segmentation. 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 SegformerFeatureExtractor, SegformerForSemanticSegmentation
from PIL import Image
import requests
feature_extractor = SegformerFeatureExtractor.from_pretrained("nvidia/segformer-b1-finetuned-ade-512-512")
model = SegformerForSemanticSegmentation.from_pretrained("nvidia/segformer-b1-finetuned-ade-512-512")
url = "http://images.cocodataset.org/val2017/000000039769.jpg"
image = Image.open(requests.get(url, stream=True).raw)
inputs = feature_extractor(images=image, return_tensors="pt")
outputs = model(**inputs)
logits = outputs.logits # shape (batch_size, num_labels, height/4, width/4)
For more code examples, we refer to the documentation.
BibTeX entry and citation info
@article{DBLP:journals/corr/abs-2105-15203,
author = {Enze Xie and
Wenhai Wang and
Zhiding Yu and
Anima Anandkumar and
Jose M. Alvarez and
Ping Luo},
title = {SegFormer: Simple and Efficient Design for Semantic Segmentation with
Transformers},
journal = {CoRR},
volume = {abs/2105.15203},
year = {2021},
url = {https://arxiv.org/abs/2105.15203},
eprinttype = {arXiv},
eprint = {2105.15203},
timestamp = {Wed, 02 Jun 2021 11:46:42 +0200},
biburl = {https://dblp.org/rec/journals/corr/abs-2105-15203.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:456b6011d6aa352a49d07aebe1449df3b2849ab7&dn=nvidia_segformer-b1-finetuned-ade-512-512Open magnet in torrent client · infohash 456b6011d6aa352a49d07aebe1449df3b2849ab7
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 3.0 KB (3,090 B) | b122bac59089e4c624861afa48215a82f647753f | 30449f8712fba60e9e339ebad427153dc30f56d2477b1705b9f51a9bcf457ed5 |
| config.json | 6.7 KB (6,885 B) | e262c88d71d92b505bf9d6ac326ddba44974eb8f | 8f1b7bcd2e1835ef0ef3a04a0d4dfe87ff9a6374253e7a3ca1751de812a420ff |
| preprocessor_config.json | 271 B (271 B) | 731939640bb201ce03c59a5b2d6bc1ee4f4162b3 | 8039d1d210abaa7117ad78e58cdfd6141a2ec72c03dae891b3cd76737e422c6c |
| pytorch_model.bin | 52.4 MB (54,944,801 B) | 8932b94dca5fa21a6b4399e2cc9f688c141c9dd8 | ac49bf62c8c0578dcf17ff048930b4f886ab0bc080d23f5591669afad5ddf7da |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/nvidia_segformer-b1-finetuned-ade-512-512/
- Slug
- nvidia_segformer-b1-finetuned-ade-512-512
- Infohash
- 456b6011d6aa352a49d07aebe1449df3b2849ab7
- License
- custom/other license
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: nvidia_segformer-b1-finetuned-ade-512-512.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | nvidia/segformer-b1-finetuned-ade-512-512 |
|---|---|
| Revision (pinned) | a775b4f5dcb2179e57006dca0e268281306412ef |
| Fetched at | 2026-09-02T04:40:25Z |
| License at fetch | other |
| Snapshot tool | huggingface · seedbank 0.1.0 |
Trackers
- udp://announce.aitorrent.org:6969/announce
- http://announce.aitorrent.org:7070/announce
- udp://announce2.aitorrent.org:6970/announce
- http://announce2.aitorrent.org:7071/announce
- udp://tracker.opentrackr.org:1337/announce
- udp://open.demonii.com:1337/announce
- udp://open.stealth.si:80/announce
- udp://exodus.desync.com:6969/announce
- udp://tracker.torrent.eu.org:451/announce
✓ verified · rehash-vs-hf-metadata at 2026-09-02T04:40:29Z
custom/other license52.4 MB (54,955,047 bytes)transformerspytorchsegformervisionimage-segmentationendpoints_compatible1 language (tf)paper: 2105.15203