From 43b951018e84faf1f65aa25aa11a434c35d441df 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] 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 //' )