Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions tts-finetune-nemo.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down