Open ArEnSc opened 4 years ago
def align(triple):
tlog, script, aligned = triple
args = parse_args() <-- add this here
args = parse_args() <-- hard code here
alphabet = Alphabet("/Users//MachineLearning/Projects/SpeechSynthesis/DataProcessing/DSAlign/models/en/alphabet.txt") <-- hard code here
tc = TextCleaner(alphabet,
dashes_to_ws=not args.text_keep_dashes,
normalize_space=not args.text_keep_ws,
to_lower=not args.text_keep_casing)
That fixes it mostly
Ran a small example it doesn't produce the align.json file.