timm_edgenext_small.usi_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 edgenext_small.usi_in1k
An EdgeNeXt image classification model. Trained on ImageNet-1k by paper authors using distillation (USI as per Solving ImageNet).
Model Details
- Model Type: Image classification / feature backbone
- Model Stats:
- Params (M): 5.6
- GMACs: 1.3
- Activations (M): 9.1
- Image size: train = 256 x 256, test = 320 x 320
- Papers:
- EdgeNeXt: Efficiently Amalgamated CNN-Transformer Architecture for Mobile Vision Applications: https://arxiv.org/abs/2206.10589
- Solving ImageNet: a Unified Scheme for Training any Backbone to Top Results: https://arxiv.org/abs/2204.03475
- Dataset: ImageNet-1k
- Original: https://github.com/mmaaz60/EdgeNeXt
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('edgenext_small.usi_in1k', 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(
'edgenext_small.usi_in1k',
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, 64, 64])
# torch.Size([1, 96, 32, 32])
# torch.Size([1, 160, 16, 16])
# torch.Size([1, 304, 8, 8])
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(
'edgenext_small.usi_in1k',
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, 304, 8, 8) shaped tensor
output = model.forward_head(output, pre_logits=True)
# output is a (1, num_features) shaped tensor
Citation
@inproceedings{Maaz2022EdgeNeXt,
title={EdgeNeXt: Efficiently Amalgamated CNN-Transformer Architecture for Mobile Vision Applications},
author={Muhammad Maaz and Abdelrahman Shaker and Hisham Cholakkal and Salman Khan and Syed Waqas Zamir and Rao Muhammad Anwer and Fahad Shahbaz Khan},
booktitle={International Workshop on Computational Aspects of Deep Learning at 17th European Conference on Computer Vision (CADL2022)},
year={2022},
organization={Springer}
}
@misc{https://doi.org/10.48550/arxiv.2204.03475,
doi = {10.48550/ARXIV.2204.03475},
url = {https://arxiv.org/abs/2204.03475},
author = {Ridnik, Tal and Lawen, Hussam and Ben-Baruch, Emanuel and Noy, Asaf},
keywords = {Computer Vision and Pattern Recognition (cs.CV), Machine Learning (cs.LG), FOS: Computer and information sciences, FOS: Computer and information sciences},
title = {Solving ImageNet: a Unified Scheme for Training any Backbone to Top Results},
publisher = {arXiv},
year = {2022},
}
Magnet link
Opens the swarm directly in your torrent client — no file download needed. Copy-paste works too:
magnet:?xt=urn:btih:e56f84d7570d0563ab826b76d7785479821b9dce&dn=timm_edgenext_small.usi_in1kOpen magnet in torrent client · infohash e56f84d7570d0563ab826b76d7785479821b9dce
Files & hashes
| Path | Size | sha1 | sha256 |
|---|---|---|---|
| README.md | 4.3 KB (4,444 B) | b55fb1318393b953640aa81d74be68c1601d2122 | a0b35d13867e74a9cca47ffe67960071f610573119d115d5ce136f9a9257c27a |
| config.json | 682 B (682 B) | 013524fc40276e2424cee1e394b6b9bdb0ffd7a8 | b54bfbaace517e4c96e68b7215cefd793472938ca89882c305967be74e6d790e |
| model.safetensors | 21.3 MB (22,368,078 B) | 6c2b36e4ba3ba6df5cf03b24cf4bf04836bd7aa8 | 14d824931ca7f09e631c90347253bbc7a925ad017a02d7b8bf6e13b872d8059b |
| pytorch_model.bin | 21.4 MB (22,425,061 B) | 5505228c3b7de1c3ec60e852032a10fdff024aa5 | d5f9c753e70494b6534c2164dead151b2ea8cec185ce787898f6adef5457b8b4 |
Cite this release
- Canonical URL
- https://aiseedbank.org/models/timm_edgenext_small.usi_in1k/
- Slug
- timm_edgenext_small.usi_in1k
- Infohash
- e56f84d7570d0563ab826b76d7785479821b9dce
- License
- mit
- Signing key fingerprint
- 85a3b32c3712427b
Every file carries a locally computed sha256 — verify a download against the signed sums: timm_edgenext_small.usi_in1k.SHA256SUMS (+ minisign signature).
Provenance
| Upstream repository | timm/edgenext_small.usi_in1k |
|---|---|
| Revision (pinned) | 81bd8f2ee56330bdf6a7a2e47e1b2b82eb34f978 |
| Fetched at | 2026-09-02T04:49:45Z |
| 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:47Z
mit42.7 MB (44,798,265 bytes)timmpytorchsafetensorsimage-classificationtransformerspaper: 2206.10589paper: 2204.03475