mirror of
https://github.com/open-mmlab/mmpretrain.git
synced 2025-06-03 14:59:18 +08:00
* update base datasets * update base * update barlowtwins * update with new convention * update * update * update * add schedule * add densecl * add eva * add mae * add maskfeat * add milan and mixmim * add moco * add swav simclr * add simmim and simsiam * refine * update * add to model index * update config inheritance * fix error in metafile * Update pre-commit and metafile check script * update metafile * fix name error * Fix classification model name and config name --------- Co-authored-by: mzr1996 <mzr1996@163.com>
13 lines
364 B
Python
13 lines
364 B
Python
_base_ = [
|
|
'../../_base_/models/resnet50.py',
|
|
'../../_base_/datasets/imagenet_bs32_pillow.py',
|
|
'../../_base_/schedules/imagenet_sgd_coslr_100e.py',
|
|
'../../_base_/default_runtime.py',
|
|
]
|
|
|
|
model = dict(backbone=dict(frozen_stages=4))
|
|
|
|
# runtime settings
|
|
default_hooks = dict(
|
|
checkpoint=dict(type='CheckpointHook', interval=10, max_keep_ckpts=3))
|