From 1ea6ed586167802c5bd5bbc9c955c25461300d18 Mon Sep 17 00:00:00 2001 From: rafaelvalle Date: Sun, 25 Nov 2018 22:34:26 -0800 Subject: [PATCH] text/symbols.py: updating symbols --- text/symbols.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/text/symbols.py b/text/symbols.py index 7212f92..1be47bf 100644 --- a/text/symbols.py +++ b/text/symbols.py @@ -7,11 +7,12 @@ The default is a set of ASCII characters that works well for English or text tha from text import cmudict _pad = '_' -_eos = '~' -_characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz!\'(),-.:;? ' +_punctuation = '!\'(),.:;? ' +_special = '-' +_letters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' # Prepend "@" to ARPAbet symbols to ensure uniqueness (some are the same as uppercase letters): _arpabet = ['@' + s for s in cmudict.valid_symbols] # Export all symbols: -symbols = [_pad, _eos] + list(_characters) + _arpabet +symbols = [_pad] + list(_special) + list(_punctuation) + list(_letters) + _arpabet