mirror of https://github.com/open-mmlab/mmocr.git
18 lines
436 B
Python
18 lines
436 B
Python
_base_ = [
|
|
'drrg_resnet50_fpn-unet_1200e_ctw1500.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'))
|
|
|
|
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),
|
|
]
|