From 6c824a6629ed6dd26c445beb45620f08dc1b41c6 Mon Sep 17 00:00:00 2001 From: Adonis Pujols Date: Thu, 11 Feb 2021 04:48:53 -0500 Subject: [PATCH 1/3] spelling error. should be multiband not mulitband --- TTS/.models.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TTS/.models.json b/TTS/.models.json index 075861db..fc3e91da 100644 --- a/TTS/.models.json +++ b/TTS/.models.json @@ -65,7 +65,7 @@ }, "en": { "ljspeech":{ - "mulitband-melgan":{ + "multiband-melgan":{ "model_file": "1Ty5DZdOc0F7OTGj9oJThYbL5iVu_2G0K", "config_file": "1Rd0R_nRCrbjEdpOwq6XwZAktvugiBvmu", "stats_file": "11oY3Tv0kQtxK_JPgxrfesa99maVXHNxU", @@ -74,4 +74,4 @@ } } } -} \ No newline at end of file +} From b29a7e9645bee1eb949283d92a4986eae237fc9a Mon Sep 17 00:00:00 2001 From: Adonis Pujols Date: Thu, 11 Feb 2021 04:49:28 -0500 Subject: [PATCH 2/3] spelling error. should be multiband not mulitband --- TTS/server/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TTS/server/README.md b/TTS/server/README.md index a8d8635a..54c85bd6 100644 --- a/TTS/server/README.md +++ b/TTS/server/README.md @@ -17,10 +17,10 @@ List officially released models. ```python TTS/server/server.py --list_models ``` Run the server with the official models. -```python TTS/server/server.py --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/mulitband-melgan``` +```python TTS/server/server.py --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/multiband-melgan``` Run the server with the official models on a GPU. -```CUDA_VISIBLE_DEVICES="0" python TTS/server/server.py --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/mulitband-melgan --use_cuda True``` +```CUDA_VISIBLE_DEVICES="0" python TTS/server/server.py --model_name tts_models/en/ljspeech/tacotron2-DCA --vocoder_name vocoder_models/en/ljspeech/multiband-melgan --use_cuda True``` Run the server with a custom models. ```python TTS/server/server.py --tts_checkpoint /path/to/tts/model.pth.tar --tts_config /path/to/tts/config.json --vocoder_checkpoint /path/to/vocoder/model.pth.tar --vocoder_config /path/to/vocoder/config.json``` From 3c2e13ca5c4a9f354bb685e3e355a7950180e4a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Thu, 11 Feb 2021 10:36:52 +0000 Subject: [PATCH 3/3] fix the default vocoder name --- TTS/bin/synthesize.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/bin/synthesize.py b/TTS/bin/synthesize.py index e0d214d5..12829acd 100755 --- a/TTS/bin/synthesize.py +++ b/TTS/bin/synthesize.py @@ -77,7 +77,7 @@ def main(): parser.add_argument( '--vocoder_name', type=str, - default="vocoder_models/en/ljspeech/mulitband-melgan", + default="vocoder_models/en/ljspeech/multiband-melgan", help= 'Name of one of the pre-trained vocoder models in format //' )