Downloads · 30 days
0
lucid-dl/convnext-tiny
convnext-tiny is a image classification model from lucid-dl. Use it when you need a label for an image. It is set up for lucid. The card lists the license as bsd-3-clause.
Liu et al., 2022 — A ConvNet for the 2020s (arXiv:2201.03545)
Downloads · 30 days
0
Access
Public
Updated May 29, 2026
Repo size
114 MB
Likes
0
Public
Click a slice to open those files.
.safetensors114 MB · 100%
From the Hugging Face model README
Liu et al., 2022 — A ConvNet for the 2020s (arXiv:2201.03545)
Lucid port of torchvision/ConvNeXt_Tiny_Weights.IMAGENET1K_V1,
converted to Lucid-native safetensors.
| Tag | acc@1 | acc@5 | Params | GFLOPs | Size | Source |
|---|---|---|---|---|---|---|
IMAGENET1K_V1 (default) | 82.52 | 96.146 | 28.6M | 4.456 | 109.07 MB | torchvision |
import lucid.models as models
from lucid.models.weights import ConvNeXtTinyWeights
# default tag
model = models.convnext_tiny_cls(pretrained=True)
# explicit tag (enum or string)
model = models.convnext_tiny_cls(weights=ConvNeXtTinyWeights.IMAGENET1K_V1)
model = models.convnext_tiny_cls(pretrained="IMAGENET1K_V1")
# preprocessing travels with the weights
weights = ConvNeXtTinyWeights.IMAGENET1K_V1
preprocess = weights.transforms()
logits = model(preprocess(image)[None]).logits
Converted from torchvision/ConvNeXt_Tiny_Weights.IMAGENET1K_V1 via
python -m tools.convert_weights convnext_tiny --tag IMAGENET1K_V1.
Key mapping + numerical parity verified against the source.
bsd-3-clause — inherited from the original weights.
@inproceedings{liu2022convnet,
title={A ConvNet for the 2020s},
author={Liu, Zhuang and Mao, Hanzi and Wu, Chao-Yuan and Feichtenhofer, Christoph and Darrell, Trevor and Xie, Saining},
booktitle={CVPR}, year={2022}
}