Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] Fix wrn configs #368

Merged
merged 3 commits into from
Dec 5, 2022
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions configs/vanilla/mmcls/wide-resnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ Deep residual networks were shown to be able to scale up to thousands of layers
| 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-22 | 94.8700 | [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](<>) |
| WRN-40 | 94.6700 | [config](./wrn40-w2_b16x8_cifar10.py) | [model](<>) \| [log](<>) |

## 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, ))