Spaces:
Runtime error
Runtime error
File size: 429 Bytes
3c10b34 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
""" from https://github.com/keithito/tacotron """
from diff_ttsg.text import cmudict
_pad = '_'
_punctuation = '!\'(),.:;? '
_special = '-'
_letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'
# Prepend "@" to ARPAbet symbols to ensure uniqueness:
_arpabet = ['@' + s for s in cmudict.valid_symbols]
# Export all symbols:
symbols = [_pad] + list(_special) + list(_punctuation) + list(_letters) + _arpabet
|