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
11 changes: 9 additions & 2 deletions ESPnet2/Demo/TTS/tts_realtime_demo.ipynb
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

{
"nbformat": 4,
"nbformat_minor": 0,
Expand Down Expand Up @@ -56,7 +57,7 @@
},
"source": [
"# NOTE: pip shows imcompatible errors due to preinstalled libraries but you do not need to care\n",
"!pip install -q espnet==202308 pypinyin==0.44.0 parallel_wavegan==0.5.4 gdown==4.4.0 espnet_model_zoo\n"
"!pip install -q espnet==202412 pypinyin==0.44.0 parallel_wavegan==0.5.4 gdown==4.4.0 espnet_model_zoo\n"
],
"execution_count": null,
"outputs": []
Expand Down Expand Up @@ -192,7 +193,13 @@
" # Only for VITS\n",
" noise_scale=0.333,\n",
" noise_scale_dur=0.333,\n",
")"
")\n",
"\n",
"if lang == \"English\":\n",
" import nltk\n",
" nltk.download('averaged_perceptron_tagger_eng')\n",
"elif lang == \"Japanese\":\n",
" !pip install -q pyopenjtalk"
],
"execution_count": null,
"outputs": []
Expand Down