Skip to content

Commit 33f8a1b

Browse files
committed
Updated README, add wide_resnet50_2 and seresnext50_32x4d weights
1 parent 5247eb3 commit 33f8a1b

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## What's New
44

5+
### Sept 3, 2020
6+
* New weights
7+
* Wide-ResNet50 - 81.5 top-1 (vs 78.5 torchvision)
8+
* SEResNeXt50-32x4d - 81.3 top-1 (vs 79.1 cadene)
9+
* Support for native Torch AMP and channels_last memory format added to train/validate scripts
10+
* Models tested with channels_last on latest NGC 20.08 container. AdaptiveAvgPool in attn layers changed to mean((2,3)) to work around bug with NHWC kernel.
11+
512
### Aug 12, 2020
613
* New/updated weights from training experiments
714
* EfficientNet-B3 - 82.1 top-1 (vs 81.6 for official with AA and 81.9 for AdvProp)

timm/models/resnet.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ def _cfg(url='', **kwargs):
5555
'resnet152': _cfg(url='https://download.pytorch.org/models/resnet152-b121ed2d.pth'),
5656
'tv_resnet34': _cfg(url='https://download.pytorch.org/models/resnet34-333f7ec4.pth'),
5757
'tv_resnet50': _cfg(url='https://download.pytorch.org/models/resnet50-19c8e357.pth'),
58-
'wide_resnet50_2': _cfg(url='https://download.pytorch.org/models/wide_resnet50_2-95faca4d.pth'),
58+
'wide_resnet50_2': _cfg(
59+
url='https://github.com/rwightman/pytorch-image-models/releases/download/v0.1-weights/wide_resnet50_racm-8234f177.pth',
60+
interpolation='bicubic'),
5961
'wide_resnet101_2': _cfg(url='https://download.pytorch.org/models/wide_resnet101_2-32ee1156.pth'),
6062

6163
# ResNeXt
@@ -147,6 +149,7 @@ def _cfg(url='', **kwargs):
147149
interpolation='bicubic',
148150
first_conv='conv1.0'),
149151
'seresnext50_32x4d': _cfg(
152+
url='https://github.com/rwightman/pytorch-image-models/releases/download/v0.1-weights/seresnext50_32x4d_racm-a304a460.pth',
150153
interpolation='bicubic'),
151154
'seresnext101_32x4d': _cfg(
152155
url='',

0 commit comments

Comments
 (0)