Views
No views yet
Zagoruyko & Komodakis, 2016 — Wide Residual Networks (arXiv:1605.07146)
torchvision/Wide_ResNet50_2_Weights.IMAGENET1K_V1,
converted to Lucid-native safetensors.| Tag | acc@1 | acc@5 | Params | GFLOPs | Size | Source |
|---|---|---|---|---|---|---|
IMAGENET1K_V1 (default) | 78.468 | 94.086 | 68.9M | 11.398 | 263.06 MB | torchvision |
1import lucid.models as models
2from lucid.models.weights import WideResNet50Weights
3
4# default tag
5model = models.wide_resnet_50_cls(pretrained=True)
6
7# explicit tag (enum or string)
8model = models.wide_resnet_50_cls(weights=WideResNet50Weights.IMAGENET1K_V1)
9model = models.wide_resnet_50_cls(pretrained="IMAGENET1K_V1")
10
11# preprocessing travels with the weights
12weights = WideResNet50Weights.IMAGENET1K_V1
13preprocess = weights.transforms()
14logits = model(preprocess(image)[None]).logitstorchvision/Wide_ResNet50_2_Weights.IMAGENET1K_V1 via
python -m tools.convert_weights wide_resnet_50 --tag IMAGENET1K_V1.
Key mapping + numerical parity verified against the source.bsd-3-clause — inherited from the original weights.@inproceedings{zagoruyko2016wide,
title={Wide Residual Networks},
author={Zagoruyko, Sergey and Komodakis, Nikos},
booktitle={BMVC}, year={2016}
}