mirror of
https://github.com/open-mmlab/mmpretrain.git
synced 2025-06-03 14:59:18 +08:00
* [Feature] support swin v2 in mmcls 1.x * fix configs * fix clamp max * Fix meshgrid * Imporve swin v2 Co-authored-by: mzr1996 <mzr1996@163.com>
9 lines
271 B
Python
9 lines
271 B
Python
_base_ = [
|
|
'../_base_/models/swin_transformer_v2/tiny_256.py',
|
|
'../_base_/datasets/imagenet_bs64_swin_256.py',
|
|
'../_base_/schedules/imagenet_bs1024_adamw_swin.py',
|
|
'../_base_/default_runtime.py'
|
|
]
|
|
|
|
model = dict(backbone=dict(window_size=[16, 16, 16, 8]))
|