From 829e2c24f973409dc8215b0436a62d14cf587107 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 21 Jun 2022 14:11:39 +0200 Subject: [PATCH] v0.7.1 (#1676) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add Thorsten VITS model (#1675) Co-authored-by: Eren Gölge * Remove GL message Co-authored-by: WeberJulian --- TTS/.models.json | 7 +++++++ TTS/utils/synthesizer.py | 2 -- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/TTS/.models.json b/TTS/.models.json index 660d479cf1..93d9f417be 100644 --- a/TTS/.models.json +++ b/TTS/.models.json @@ -208,6 +208,13 @@ "author": "@thorstenMueller", "license": "apache 2.0", "commit": "unknown" + }, + "vits": { + "github_rls_url": "https://coqui.gateway.scarf.sh/v0.7.0_models/tts_models--de--thorsten--vits.zip", + "default_vocoder": null, + "author": "@thorstenMueller", + "license": "apache 2.0", + "commit": "unknown" } } }, diff --git a/TTS/utils/synthesizer.py b/TTS/utils/synthesizer.py index 9ce528a3b4..2f31980972 100644 --- a/TTS/utils/synthesizer.py +++ b/TTS/utils/synthesizer.py @@ -78,8 +78,6 @@ def __init__( if vocoder_checkpoint: self._load_vocoder(vocoder_checkpoint, vocoder_config, use_cuda) self.output_sample_rate = self.vocoder_config.audio["sample_rate"] - else: - print(" > Using Griffin-Lim as no vocoder model defined") @staticmethod def _get_segmenter(lang: str):