This commit is contained in:
xmy0916 2021-01-20 15:16:37 +08:00
parent a301e05e1d
commit fe694ae902
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,7 @@ Global:
# for data or label process
character_dict_path:
# Set the language of training, if set, select the default dictionary file
character_type:
character_type: ch
max_text_length: 25
infer_mode: False
use_space_char: True

View File

@ -24,7 +24,9 @@ class BaseRecLabelDecode(object):
character_type='ch',
use_space_char=False):
support_character_type = [
'ch', 'en', 'en_sensitive', 'french', 'german', 'japan', 'korean'
'ch', 'en', 'en_sensitive', 'french', 'german', 'japan', 'korean', 'it',
'xi', 'pu', 'ru', 'ar', 'ta', 'ug', 'fa', 'ur', 'rs', 'oc', 'rsc', 'bg',
'uk', 'be', 'te', 'ka', 'chinese_cht', 'hi', 'mr', 'ne'
]
assert character_type in support_character_type, "Only {} are supported now but get {}".format(
support_character_type, character_type)