mmpretrain/configs/resnet/resnet50_8xb8_cub.py

20 lines
722 B
Python

_base_ = [
'../_base_/models/resnet50.py', '../_base_/datasets/cub_bs8_448.py',
'../_base_/schedules/cub_bs64.py', '../_base_/default_runtime.py'
]
# use pre-train weight converted from https://github.com/Alibaba-MIIL/ImageNet21K # noqa
checkpoint = 'https://download.openmmlab.com/mmclassification/v0/resnet/resnet50_3rdparty-mill_in21k_20220331-faac000b.pth' # noqa
model = dict(
type='ImageClassifier',
backbone=dict(
init_cfg=dict(
type='Pretrained', checkpoint=checkpoint, prefix='backbone')),
head=dict(num_classes=200, ))
log_config = dict(interval=20) # log every 20 intervals
checkpoint_config = dict(
interval=1, max_keep_ckpts=3) # save last three checkpoints