mmpretrain/configs/mobilenet_v3/mobilenet-v3-small_8xb16_cifar10.py
Hubert 1b98fc13d9
[Enhance] Add more mobilenetv3 pretrains. (#1154)
* add small-050/075 and move files

* add previous results

* Update checkpoint link

Co-authored-by: mzr1996 <mzr1996@163.com>
2022-11-14 17:06:39 +08:00

16 lines
376 B
Python

_base_ = [
'../_base_/models/mobilenet_v3/mobilenet_v3_small_cifar.py',
'../_base_/datasets/cifar10_bs16.py',
'../_base_/schedules/cifar10_bs128.py', '../_base_/default_runtime.py'
]
# schedule settings
param_scheduler = dict(
type='MultiStepLR',
by_epoch=True,
milestones=[120, 170],
gamma=0.1,
)
train_cfg = dict(by_epoch=True, max_epochs=200)