diff --git a/tts-finetune-nemo.ipynb b/tts-finetune-nemo.ipynb index 606a6f4..5ed0ae2 100644 --- a/tts-finetune-nemo.ipynb +++ b/tts-finetune-nemo.ipynb @@ -138,7 +138,6 @@ "!mkdir -p tts_dataset_files && cd tts_dataset_files \\\n", "&& wget https://raw.githubusercontent.com/NVIDIA/NeMo/main/scripts/tts_dataset_files/cmudict-0.7b_nv22.10 \\\n", "&& wget https://raw.githubusercontent.com/NVIDIA/NeMo/main/scripts/tts_dataset_files/heteronyms-052722 \\\n", - "&& wget https://raw.githubusercontent.com/NVIDIA/NeMo/main/nemo_text_processing/text_normalization/en/data/whitelist/tts.tsv \\\n", "&& cd ..\n", " \n", "! wget https://raw.githubusercontent.com/NVIDIA/NeMo/main/scripts/dataset_processing/tts/generate_mels.py\n", @@ -548,7 +547,6 @@ " sup_data_path={sup_data_path} \\\n", " phoneme_dict_path=tts_dataset_files/cmudict-0.7b_nv22.10 \\\n", " heteronyms_path=tts_dataset_files/heteronyms-052722 \\\n", - " whitelist_path=tts_dataset_files/tts.tsv \\\n", " exp_manager.exp_dir={os.environ[\"RESULTS_DIR\"]} \\\n", " +init_from_pretrained_model=\"tts_en_fastpitch\" \\\n", " +trainer.max_steps=1000 \\\n", @@ -583,9 +581,8 @@ " \n", "* `phoneme_dict_path=tts_dataset_files/cmudict-0.7b_nv22.10 \n", "heteronyms_path=tts_dataset_files/heteronyms-052722\n", - "whitelist_path=tts_dataset_files/tts.tsv \n", "`\n", - " * We tell the script where `phoneme_dict_path`, `heteronyms-052722` and `whitelist_path` are located. These are the additional files we downloaded earlier, and are used in preprocessing the data.\n", + " * We tell the script where `phoneme_dict_path` and `heteronyms-052722` are located. These are the additional files we downloaded earlier, and are used in preprocessing the data.\n", " \n", "* `exp_manager.exp_dir=./ljspeech_to_9017_no_mixing_5_mins`\n", " * Where we want to save our log files, tensorboard file, checkpoints, and more.\n",