ILSVRC/imagenet-1k
Viewer • Updated • 1.43M • 76.8k • 818
Zhang et al., 2022 — ResNeSt: Split-Attention Networks (arXiv:2004.08955)
Lucid port of timm/resnest200e.in1k,
converted to Lucid-native safetensors.
| Tag | acc@1 | acc@5 | Params | GFLOPs | Size | Source |
|---|---|---|---|---|---|---|
IN1K (default) |
83.9 | — | 70.2M | — | 268.81 MB | timm |
import lucid.models as models
from lucid.models.weights import ResNeSt200Weights
# default tag
model = models.resnest_200_cls(pretrained=True)
# explicit tag (enum or string)
model = models.resnest_200_cls(weights=ResNeSt200Weights.IN1K)
model = models.resnest_200_cls(pretrained="IN1K")
# preprocessing travels with the weights
weights = ResNeSt200Weights.IN1K
preprocess = weights.transforms()
logits = model(preprocess(image)[None]).logits
Converted from timm/resnest200e.in1k via
python -m tools.convert_weights resnest_200 --tag IN1K.
Key mapping + numerical parity verified against the source.
apache-2.0 — inherited from the original weights.
@inproceedings{zhang2022resnest,
title={ResNeSt: Split-Attention Networks},
author={Zhang, Hang and Wu, Chongruo and Zhang, Zhongyue and Zhu, Yi and Lin, Haibin and Zhang, Zhi and Sun, Yue and He, Tong and Mueller, Jonas and Manmatha, R. and Li, Mu and Smola, Alexander},
booktitle={CVPR Workshops}, year={2022}
}