mirror of
https://github.com/open-mmlab/mmclassification.git
synced 2025-06-03 21:53:55 +08:00
15 lines
437 B
Python
15 lines
437 B
Python
_base_ = [
|
|
'../_base_/models/vgg13.py',
|
|
'../_base_/datasets/imagenet_bs32_pil_resize.py',
|
|
'../_base_/schedules/imagenet_bs256.py',
|
|
'../_base_/default_runtime.py',
|
|
]
|
|
|
|
# schedule settings
|
|
optim_wrapper = dict(optimizer=dict(lr=0.01))
|
|
|
|
# NOTE: `auto_scale_lr` is for automatically scaling LR,
|
|
# USER SHOULD NOT CHANGE ITS VALUES.
|
|
# base_batch_size = (8 GPUs) x (32 samples per GPU)
|
|
auto_scale_lr = dict(base_batch_size=256)
|