Skip to content

Commit

Permalink
[FIX] Fix wrn configs (#368)
Browse files Browse the repository at this point in the history
* fix wrn configs

* fix wrn configs

* update online wrn model weight
  • Loading branch information
fpshuang committed Dec 5, 2022
1 parent b1db8f4 commit 3b6ef31
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions configs/vanilla/mmcls/wide-resnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ Deep residual networks were shown to be able to scale up to thousands of layers

### Cifar10

| Model | Top-1 (%) | Config | Download |
| :----: | :-------: | :-----------------------------------: | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| WRN-16 | 93.04 | [config](./wrn16-w2_b16x8_cifar10.py) | [model](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn16_2_b16x8_cifar10_20220831_204709-446b466e.pth) \| [log](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn16_2_b16x8_cifar10_20220831_204709-446b466e.json) |
| WRN-22 | | [config](./wrn22-w4_b16x8_cifar10.py) | [model](<>) \| [log](<>) |
| WRN-28 | 95.41 | [config](./wrn28-w4_b16x8_cifar10.py) | [model](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn28_4_b16x8_cifar10_20220831_173536-d6f8725c.pth) \| [log](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn28_4_b16x8_cifar10_20220831_173536-d6f8725c.json) |
| WRN-40 | | [config](./wrn40-w2_b16x8_cifar10.py) | [model](<>) \| [log](<>) |
| Model | Top-1 (%) | Config | Download |
| :----: | :-------: | :-----------------------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| WRN-16 | 93.04 | [config](./wrn16-w2_b16x8_cifar10.py) | [model](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn16_2_b16x8_cifar10_20220831_204709-446b466e.pth) \| [log](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn16_2_b16x8_cifar10_20220831_204709-446b466e.json) |
| WRN-22 | 94.8700 | [config](./wrn22-w4_b16x8_cifar10.py) | [model](https://download.openmmlab.com/mmrazor/v1/wide_resnet/wrn22-w4_b16x8_cifar10/wrn22-w4_b16x8_cifar10_20221201_170638-1d044c6f.pth) \| [log](https://download.openmmlab.com/mmrazor/v1/wide_resnet/wrn22-w4_b16x8_cifar10/wrn22-w4_b16x8_cifar10_20221201_170638-1d044c6f.json) |
| WRN-28 | 95.41 | [config](./wrn28-w4_b16x8_cifar10.py) | [model](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn28_4_b16x8_cifar10_20220831_173536-d6f8725c.pth) \| [log](https://openmmlab-share.oss-cn-hangzhou.aliyuncs.com/mmrazor/v1/wide_resnet/wrn28_4_b16x8_cifar10_20220831_173536-d6f8725c.json) |
| WRN-40 | 94.6700 | [config](./wrn40-w2_b16x8_cifar10.py) | [model](https://download.openmmlab.com/mmrazor/v1/wide_resnet/wrn40-w2_b16x8_cifar10/wrn40-w2_b16x8_cifar10_20221201_170318-761c8c55.pth) \| [log](https://download.openmmlab.com/mmrazor/v1/wide_resnet/wrn40-w2_b16x8_cifar10/wrn40-w2_b16x8_cifar10_20221201_170318-761c8c55.json) |

## Citation

Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
_base_ = ['wrn16_w2_b16x8_cifar10.py']
_base_ = ['wrn16-w2_b16x8_cifar10.py']
model = dict(
backbone=dict(depth=22, widen_factor=4), head=dict(in_channels=256, ))
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
_base_ = ['wrn16_w2_b16x8_cifar10.py']
_base_ = ['wrn16-w2_b16x8_cifar10.py']
model = dict(
backbone=dict(depth=28, widen_factor=4), head=dict(in_channels=256, ))
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
_base_ = ['wrn16_w2_b16x8_cifar10.py']
_base_ = ['wrn16-w2_b16x8_cifar10.py']
model = dict(
backbone=dict(depth=40, widen_factor=2), head=dict(in_channels=128, ))

0 comments on commit 3b6ef31

Please sign in to comment.