Skip to content

Commit 012c231

Browse files
committed
1 parent 43babae commit 012c231

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Tacotron2_and_WaveNet_text_to_speech_demo.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"\n",
4343
"This is a proof of concept for Tacotron2 text-to-speech synthesis. Models used here were trained on [LJSpeech dataset](https://keithito.com/LJ-Speech-Dataset/).\n",
4444
"\n",
45-
"**Notice**: The waveform generation is super slow since it implements naive autoregressive generation. It doesn't use the method described in [Parallel WaveNet](https://arxiv.org/abs/1711.10433). \n",
45+
"**Notice**: The waveform generation is super slow since it implements naive autoregressive generation. It doesn't use parallel generation method described in [Parallel WaveNet](https://arxiv.org/abs/1711.10433). \n",
4646
"\n",
4747
"**Estimated time to complete**: 2 ~ 3 hours."
4848
]
@@ -70,6 +70,8 @@
7070
"import os\n",
7171
"from os.path import exists, join, expanduser\n",
7272
"\n",
73+
"os.chdir(expanduser(\"~\"))\n",
74+
"\n",
7375
"wavenet_dir = \"wavenet_vocoder\"\n",
7476
"if not exists(wavenet_dir):\n",
7577
" ! git clone https://github.com/r9y9/$wavenet_dir\n",
@@ -91,7 +93,7 @@
9193
"cell_type": "code",
9294
"source": [
9395
"# Install dependencies\n",
94-
"# ! pip install -q --upgrade \"tensorflow-gpu==1.6.0\"\n",
96+
"! pip install -q --upgrade \"tensorflow<=1.9.0\"\n",
9597
"\n",
9698
"os.chdir(join(expanduser(\"~\"), taco2_dir))\n",
9799
"! pip install -q -r requirements.txt\n",

0 commit comments

Comments
 (0)