2022-04-15 11:35:15 +08:00
|
|
|
_base_ = [
|
|
|
|
'../_base_/models/poolformer/poolformer_s12.py',
|
|
|
|
'../_base_/datasets/imagenet_bs128_poolformer_small_224.py',
|
|
|
|
'../_base_/schedules/imagenet_bs1024_adamw_swin.py',
|
|
|
|
'../_base_/default_runtime.py',
|
|
|
|
]
|
|
|
|
|
2022-06-01 14:11:53 +08:00
|
|
|
# schedule settings
|
2022-06-02 17:11:09 +08:00
|
|
|
optim_wrapper = dict(
|
|
|
|
optimizer=dict(lr=4e-3),
|
|
|
|
clip_grad=dict(max_norm=5.0),
|
|
|
|
)
|
2022-07-14 19:15:49 +08:00
|
|
|
|
2022-07-15 15:20:17 +08:00
|
|
|
# NOTE: `auto_scale_lr` is for automatically scaling LR
|
|
|
|
# based on the actual training batch size.
|
2022-07-14 19:15:49 +08:00
|
|
|
# base_batch_size = (32 GPUs) x (128 samples per GPU)
|
|
|
|
auto_scale_lr = dict(base_batch_size=4096)
|