Skip to content

Commit c631b40

Browse files
Vincent Moensdatumbox
authored andcommitted
[fbsync] Update ResNet-50 accuracy with Repeated Augmentation (#5201)
Summary: * Update ResNet-50 accuracy with Repeated Augmentations * Update the ResNet50 weights URL. Reviewed By: datumbox, NicolasHug Differential Revision: D33655256 fbshipit-source-id: 230c8914e4784f84a57f1b89f4f279c34ba8fc3b Co-authored-by: Vasilis Vryniotis <[email protected]>
1 parent bd89978 commit c631b40

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

torchvision/prototype/models/resnet.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,16 +108,16 @@ class ResNet50_Weights(WeightsEnum):
108108
},
109109
)
110110
ImageNet1K_V2 = Weights(
111-
url="https://download.pytorch.org/models/resnet50-f46c3f97.pth",
111+
url="https://download.pytorch.org/models/resnet50-11ad3fa6.pth",
112112
transforms=partial(ImageNetEval, crop_size=224, resize_size=232),
113113
meta={
114114
**_COMMON_META,
115115
"architecture": "ResNet",
116116
"publication_year": 2015,
117117
"num_params": 25557032,
118-
"recipe": "https://github.com/pytorch/vision/issues/3995#new-recipe-with-fixres",
119-
"acc@1": 80.674,
120-
"acc@5": 95.166,
118+
"recipe": "https://github.com/pytorch/vision/issues/3995#issuecomment-1013906621",
119+
"acc@1": 80.858,
120+
"acc@5": 95.434,
121121
},
122122
)
123123
default = ImageNet1K_V2

0 commit comments

Comments
 (0)