Fix SIL symbol in code snippet: _ -> _

This commit is contained in:
Dmitrii Kravchenko 2020-10-15 14:51:35 +03:00
parent 0b5bd12205
commit d796421cba

View File

@ -84,7 +84,7 @@ Then, this text is segmented into small pieces, for example:
Since the whitespace is preserved in the segmented text, we can detokenize the text without any ambiguities.
```
detokenized = ''.join(pieces).replace('_', ' ')
detokenized = ''.join(pieces).replace('', ' ')
```
This feature makes it possible to perform detokenization without relying on language-specific resources.