mirror of https://github.com/open-mmlab/mmocr.git
21 lines
527 B
Python
21 lines
527 B
Python
_base_ = [
|
|
'dbnetpp_resnet50-dcnv2_fpnc_1200e_icdar2015.py',
|
|
]
|
|
|
|
load_from = None
|
|
|
|
_base_.model.backbone = dict(
|
|
type='CLIPResNet',
|
|
init_cfg=dict(
|
|
type='Pretrained',
|
|
checkpoint='https://download.openmmlab.com/'
|
|
'mmocr/backbone/resnet50-oclip-7ba0c533.pth'))
|
|
|
|
_base_.train_dataloader.num_workers = 24
|
|
_base_.optim_wrapper.optimizer.lr = 0.002
|
|
|
|
param_scheduler = [
|
|
dict(type='LinearLR', end=200, start_factor=0.001),
|
|
dict(type='PolyLR', power=0.9, eta_min=1e-7, begin=200, end=1200),
|
|
]
|