ResNeSt-200

Zhang et al., 2022 — ResNeSt: Split-Attention Networks (arXiv:2004.08955)

Lucid port of timm/resnest200e.in1k, converted to Lucid-native safetensors.

Available weights

Tag acc@1 acc@5 Params GFLOPs Size Source
IN1K (default) 83.9 — 70.2M — 268.81 MB timm

Usage

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

Conversion

Converted from timm/resnest200e.in1k via python -m tools.convert_weights resnest_200 --tag IN1K. Key mapping + numerical parity verified against the source.

License

apache-2.0 — inherited from the original weights.

Citation

@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}
}
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Dataset used to train lucid-dl/resnest-200

Paper for lucid-dl/resnest-200

Evaluation results