We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d237d95 commit 5357fc9Copy full SHA for 5357fc9
torchvision/prototype/models/resnet.py
@@ -160,6 +160,16 @@ class ResNeXt50_32x4dWeights(Weights):
160
"acc@5": 93.698,
161
},
162
)
163
+ ImageNet1K_RefV2 = WeightEntry(
164
+ url="https://download.pytorch.org/models/resnext50_32x4d-b260af35.pth",
165
+ transforms=partial(ImageNetEval, crop_size=224, resize_size=232),
166
+ meta={
167
+ **_common_meta,
168
+ "recipe": "https://github.com/pytorch/vision/issues/3995",
169
+ "acc@1": 81.116,
170
+ "acc@5": 95.478,
171
+ },
172
+ )
173
174
175
class ResNeXt101_32x8dWeights(Weights):
0 commit comments