MAERec-Gradio / configs /textdet /drrg /drrg_resnet50-oclip_fpn-unet_1200e_ctw1500.py
Mountchicken's picture
Upload 704 files
9bf4bd7
raw
history blame
436 Bytes
_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),
]