Spaces:
Sleeping
Sleeping
File size: 525 Bytes
9bf4bd7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
_base_ = [
'dbnet_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=100, start_factor=0.001),
dict(type='PolyLR', power=0.9, eta_min=1e-7, begin=100, end=1200),
]
|