mirror of https://github.com/open-mmlab/mmocr.git
12 lines
334 B
Python
12 lines
334 B
Python
label_convertor = dict(
|
|
type='AttnConvertor', dict_type='DICT36', with_unknown=True, lower=True)
|
|
|
|
model = dict(
|
|
type='SATRN',
|
|
backbone=dict(type='ShallowCNN'),
|
|
encoder=dict(type='SatrnEncoder'),
|
|
decoder=dict(type='TFDecoder'),
|
|
loss=dict(type='TFLoss'),
|
|
label_convertor=label_convertor,
|
|
max_seq_len=40)
|