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

← All models

timm_mobilenetv3_small_100.lamb_in1k

timm · 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.


tags:

  • image-classification
  • timm
  • transformers library_name: timm license: apache-2.0 datasets:
  • imagenet-1k

Model card for mobilenetv3_small_100.lamb_in1k

A MobileNet-v3 image classification model. Trained on ImageNet-1k in timm using recipe template described below.

Recipe details:

  • A LAMB optimizer based recipe that is similar to ResNet Strikes Back A2 but 50% longer with EMA weight averaging, no CutMix
  • Step (exponential decay w/ staircase) LR schedule with warmup

Model Details

  • Model Type: Image classification / feature backbone
  • Model Stats:
    • Params (M): 2.5
    • GMACs: 0.1
    • Activations (M): 1.4
    • Image size: 224 x 224
  • Papers:
    • Searching for MobileNetV3: https://arxiv.org/abs/1905.02244
  • Dataset: ImageNet-1k
  • Original: https://github.com/huggingface/pytorch-image-models

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('mobilenetv3_small_100.lamb_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(
    'mobilenetv3_small_100.lamb_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, 16, 112, 112])
    #  torch.Size([1, 16, 56, 56])
    #  torch.Size([1, 24, 28, 28])
    #  torch.Size([1, 48, 14, 14])
    #  torch.Size([1, 576, 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(
    'mobilenetv3_small_100.lamb_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, 576, 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{howard2019searching,
  title={Searching for mobilenetv3},
  author={Howard, Andrew and Sandler, Mark and Chu, Grace and Chen, Liang-Chieh and Chen, Bo and Tan, Mingxing and Wang, Weijun and Zhu, Yukun and Pang, Ruoming and Vasudevan, Vijay and others},
  booktitle={Proceedings of the IEEE/CVF international conference on computer vision},
  pages={1314--1324},
  year={2019}
}

Magnet link

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

magnet:?xt=urn:btih:f0cae6df472c19d28d69deaeb7504107b200a461&dn=timm_mobilenetv3_small_100.lamb_in1k

Open magnet in torrent client · infohash f0cae6df472c19d28d69deaeb7504107b200a461

Files & hashes

PathSizesha1sha256
README.md4.3 KB (4,386 B)c033a738279c95370634e2ecead02ba0b06a8da13950face80991c4f91fb1ead491d787639e08a737f948fd630dd938ae8f78c18
config.json586 B (586 B)40147f9acd8d526983d577238064088a8d454bba07194b4b5f5140b0d1d1b80c49b6568b726c6e2f88858340cb7618061816b6e8
model.safetensors9.8 MB (10,241,912 B)67c9369c0d18ce4625d6c5d5bfcd2814f57d3b3946d2c063b18125884c48937afa4c49e18128869e52e8db96df48bf0a4d7ff697
pytorch_model.bin9.8 MB (10,299,673 B)7b76ed0a21a27c2270df8b7e0d9bb9a7d71e69dac66054da8dbd3453fecb5c3c842faef8e4e1fcdc71d68208cb577388ae191c5f

Cite this release

Canonical URL
https://aiseedbank.org/models/timm_mobilenetv3_small_100.lamb_in1k/
Slug
timm_mobilenetv3_small_100.lamb_in1k
Infohash
f0cae6df472c19d28d69deaeb7504107b200a461
License
apache-2.0
Signing key fingerprint
85a3b32c3712427b

Every file carries a locally computed sha256 — verify a download against the signed sums: timm_mobilenetv3_small_100.lamb_in1k.SHA256SUMS (+ minisign signature).

Provenance

Upstream repositorytimm/mobilenetv3_small_100.lamb_in1k
Revision (pinned)1824797e7887cbec1990e4adbd6675960a36c589
Fetched at2026-09-04T06:32:41Z
License at fetchapache-2.0
Snapshot toolhuggingface · seedbank 0.1.0

Trackers

✓ verified · rehash-vs-hf-metadata at 2026-09-04T06:32:44Z

apache-2.019.6 MB (20,546,557 bytes)timmpytorchsafetensorsimage-classificationtransformerspaper: 2110.00476paper: 1905.02244