mirror of
https://github.com/open-mmlab/mmpretrain.git
synced 2025-06-02 22:31:23 +08:00
13 lines
369 B
Python
13 lines
369 B
Python
|
_base_ = [
|
||
|
'../_base_/models/replknet-XL_in1k.py',
|
||
|
'../_base_/datasets/imagenet_bs8_pil_bicubic_320.py',
|
||
|
'../_base_/schedules/imagenet_bs256_coslr.py',
|
||
|
'../_base_/default_runtime.py'
|
||
|
]
|
||
|
|
||
|
# schedule settings
|
||
|
param_scheduler = dict(
|
||
|
type='CosineAnnealingLR', T_max=300, by_epoch=True, begin=0, end=300)
|
||
|
|
||
|
train_cfg = dict(by_epoch=True, max_epochs=300)
|