This commit is contained in:
tink2123 2021-02-03 08:26:46 +00:00
parent a6146ffc43
commit 25008de315
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ class SRNLabelEncode(BaseRecLabelEncode):
def __call__(self, data):
text = data['label']
text = self.encode(text)
char_num = len(self.character_str)
char_num = len(self.character)
if text is None:
return None
if len(text) > self.max_text_len: