Spaces:
Runtime error
Runtime error
File size: 446 Bytes
d1ceaed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
""" from https://github.com/keithito/tacotron """
'''
Defines the set of symbols used in text input to the model.
'''
_pad = '_'
_punctuation = ';:,.!?¡¿—…"«»“” '
_letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
_number = '0123456789'
# Export all symbols:
symbols = [_pad] + list(_punctuation) + list(_letters) + list(_number) + list("'・-()")
# print(symbols)
# Special symbol ids
SPACE_ID = symbols.index(" ")
|