Audio Precessing class, passing data fetching argummetns from config

This commit is contained in:
Eren Golge
2018-01-24 08:04:25 -08:00
parent 4014e974d5
commit 2a20b7c2ac
6 changed files with 117 additions and 81 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
#-*- coding: utf-8 -*-
import re
from Tacotron.utils.text import cleaners
from Tacotron.utils.text.symbols import symbols
from TTS.utils.text import cleaners
from TTS.utils.text.symbols import symbols
# Mappings from symbol to numeric ID and vice versa:
+1 -1
View File
@@ -7,7 +7,7 @@ Defines the set of symbols used in text input to the model.
The default is a set of ASCII characters that works well for English or text that has been run
through Unidecode. For other data, you can modify _characters. See TRAINING_DATA.md for details.
'''
from Tacotron.utils.text import cmudict
from TTS.utils.text import cmudict
_pad = '_'
_eos = '~'