timm_repvgg_a0.rvgg_in1k
timm · 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.
tags:
- image-classification
- timm
- transformers library_name: timm license: mit datasets:
- imagenet-1k
Model card for repvgg_a0
A RepVGG image classification model. Trained on ImageNet-1k by paper authors.
This model architecture is implemented using timm's flexible BYOBNet (Bring-Your-Own-Blocks Network).
BYOBNet allows configuration of:
- block / stage layout
- stem layout
- output stride (dilation)
- activation and norm layers
- channel and spatial / self-attention layers
...and also includes timm features common to many other architectures, including:
- stochastic depth
- gradient checkpointing
- layer-wise LR decay
- per-stage feature extraction
Model Details
- Model Type: Image classification / feature backbone
- Model Stats:
- Params (M): 9.1
- GMACs: 1.5
- Activations (M): 3.6
- Image size: 224 x 224
- Papers:
- RepVGG: Making VGG-style ConvNets Great Again: https://arxiv.org/abs/2101.03697
- Dataset: ImageNet-1k
- Original: https://github.com/DingXiaoH/RepVGG
Model Usage
Image Classification
from urllib.request import urlopen
from PIL import Image
import timm
img = Image.open(urlopen(
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))
model = timm.create_model('repvgg_a0', pretrained=True)
model = model.eval()
# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
top5_probabilities, top5_class_indices = torch.topk(output.softmax(dim=1) * 100, k=5)
Feature Map Extraction
from urllib.request import urlopen
from PIL import Image
import timm
img = Image.open(urlopen(
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))
model = timm.create_model(
'repvgg_a0',
pretrained=True,
features_only=True,
)
model = model.eval()
# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)
output = model(transforms(img).unsqueeze(0)) # unsqueeze single image into batch of 1
for o in output:
# print shape of each feature map in output
# e.g.:
# torch.Size([1, 48, 112, 112])
# torch.Size([1, 48, 56, 56])
# torch.Size([1, 96, 28, 28])
# torch.Size([1, 192, 14, 14])
# torch.Size([1, 1280, 7, 7])
print(o.shape)
Image Embeddings
from urllib.request import urlopen
from PIL import Image
import timm
img = Image.open(urlopen(
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))
model = timm.create_model(
'repvgg_a0',
pretrained=True,
num_classes=0, # remove classifier nn.Linear
)
model = model.eval()
# get model specific transforms (normalization, resize)
data_config = timm.data.resolve_model_data_config(model)
transforms = timm.data.create_transform(**data_config, is_training=False)
output = model(transforms(img).unsqueeze(0)) # output is (batch_size, num_features) shaped tensor
# or equivalently (without needing to set num_classes=0)
output = model.forward_features(transforms(img).unsqueeze(0))
# output is unpooled, a (1, 1280, 7, 7) shaped tensor
output = model.forward_head(output, pre_logits=True)
# output is a (1, num_features) shaped tensor
Model Comparison
Explore the dataset and runtime metrics of this model in timm model results.
Citation
@misc{rw2019timm,
author = {Ross Wightman},
title = {PyTorch Image Models},
year = {2019},
publisher = {GitHub},
journal = {GitHub repository},
doi = {10.5281/zenodo.4414861},
howpublished = {\url{https://github.com/huggingface/pytorch-image-models}}
}
@inproceedings{ding2021repvgg,
title={Repvgg: Making vgg-style convnets great again},
author={Ding, Xiaohan and Zhang, Xiangyu and Ma, Ningning and Han, Jungong and Ding, Guiguang and Sun, Jian},
booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
pages={13733--13742},
year={2021}
}
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:c0289235542b18929d7f56520a2e369f42072f86&dn=timm_repvgg_a0.rvgg_in1kOpen magnet in torrent client · infohash c0289235542b18929d7f56520a2e369f42072f86
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 4.4 KB (4,515 B) | 0313bd67f787470a5d3d3ed68dbf3842edca6f71 | 76528d32891b0a14087eb2240065094ff2cea9cc04a41ebe7b28311711af830d |
| config.json | 645 B (645 B) | 6952e34d23a28af12305f355bd523926e1bd9784 | 02a50fa95dc81e8999d8e6d08286f29104cdd150d48a13089b547fdef4b724df |
| model.safetensors | 34.9 MB (36,565,360 B) | c189fee3187d4bba38478c187c817282c7e3d23e | 2b2bfd7feff2e4aaacfa828b20e84c44df56abacb341b764550f890634789608 |
| pytorch_model.bin | 35.0 MB (36,655,561 B) | cb40bcc6087da2d40be4e94c2a2e82bc4264cbf2 | d8d1275b0e8a0a55b9e1e84371d640af65fb2835fcba657e0a83c5a2aba4db17 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/timm_repvgg_a0.rvgg_in1k/
- Slug
- timm_repvgg_a0.rvgg_in1k
- Infohash
- c0289235542b18929d7f56520a2e369f42072f86
- License
- mit
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: timm_repvgg_a0.rvgg_in1k.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | timm/repvgg_a0.rvgg_in1k |
|---|---|
| Revision (pinned) | e292d220aa8b811232037f8aa6d6c8c552dbd0c0 |
| Fetched at | 2026-09-02T04:49:56Z |
| License at fetch | mit |
| 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:49:59Z
mit69.8 MB (73,226,081 bytes)timmpytorchsafetensorsimage-classificationtransformerspaper: 2101.03697