Merge pull request #1979 from tink2123/fix_encode
Fix encode for srn and attn
This commit is contained in:
commit
1b1f170c7a
|
@ -215,7 +215,7 @@ class AttnLabelEncode(BaseRecLabelEncode):
|
|||
return None
|
||||
data['length'] = np.array(len(text))
|
||||
text = [0] + text + [len(self.character) - 1] + [0] * (self.max_text_len
|
||||
- len(text) - 1)
|
||||
- len(text) - 2)
|
||||
data['label'] = np.array(text)
|
||||
return data
|
||||
|
||||
|
@ -261,7 +261,7 @@ class SRNLabelEncode(BaseRecLabelEncode):
|
|||
if len(text) > self.max_text_len:
|
||||
return None
|
||||
data['length'] = np.array(len(text))
|
||||
text = text + [char_num] * (self.max_text_len - len(text))
|
||||
text = text + [char_num - 1] * (self.max_text_len - len(text))
|
||||
data['label'] = np.array(text)
|
||||
return data
|
||||
|
||||
|
|
Loading…
Reference in New Issue