Views
No views yet
Simonyan & Zisserman, 2015 — Very Deep Convolutional Networks for Large-Scale Image Recognition (arXiv:1409.1556)
torchvision/VGG11_BN_Weights.IMAGENET1K_V1,
converted to Lucid-native safetensors.| Tag | acc@1 | acc@5 | Params | GFLOPs | Size | Source |
|---|---|---|---|---|---|---|
IMAGENET1K_V1 (default) | 70.37 | 89.81 | 132.9M | 7.609 | 506.88 MB | torchvision |
1import lucid.models as models
2from lucid.models.weights import VGG11BNWeights
3
4# default tag
5model = models.vgg_11_bn_cls(pretrained=True)
6
7# explicit tag (enum or string)
8model = models.vgg_11_bn_cls(weights=VGG11BNWeights.IMAGENET1K_V1)
9model = models.vgg_11_bn_cls(pretrained="IMAGENET1K_V1")
10
11# preprocessing travels with the weights
12weights = VGG11BNWeights.IMAGENET1K_V1
13preprocess = weights.transforms()
14logits = model(preprocess(image)[None]).logitstorchvision/VGG11_BN_Weights.IMAGENET1K_V1 via
python -m tools.convert_weights vgg_11_bn --tag IMAGENET1K_V1.
Key mapping + numerical parity verified against the source.bsd-3-clause — inherited from the original weights.@inproceedings{simonyan2015very,
title={Very Deep Convolutional Networks for Large-Scale Image Recognition},
author={Simonyan, Karen and Zisserman, Andrew},
booktitle={ICLR}, year={2015}
}