ascii index to character
(self, Id)
| 591 | return Tokenization(tokens, processed_text, text, asIds=False) |
| 592 | |
| 593 | def IdToToken(self, Id): |
| 594 | """ascii index to character""" |
| 595 | return chr(Id) |
| 596 | |
| 597 | def TokenToId(self, token): |
| 598 | """ascii character to index""" |