From 30c72e0d05dc008763e5ef8da7b08c5d5f6817b8 Mon Sep 17 00:00:00 2001 From: WeberJulian Date: Tue, 21 Jun 2022 11:39:49 +0200 Subject: [PATCH 1/3] Add Thorsten VITS model (#1675) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Eren Gölge --- TTS/.models.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/TTS/.models.json b/TTS/.models.json index 660d479c..93d9f417 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" } } }, From 3328be7a8eaa10b66c7e55d00d90de52863ad323 Mon Sep 17 00:00:00 2001 From: Eren G??lge Date: Tue, 21 Jun 2022 12:39:31 +0200 Subject: [PATCH 2/3] Remove GL message --- TTS/utils/synthesizer.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/TTS/utils/synthesizer.py b/TTS/utils/synthesizer.py index 9ce528a3..2f319809 100644 --- a/TTS/utils/synthesizer.py +++ b/TTS/utils/synthesizer.py @@ -78,8 +78,6 @@ class Synthesizer(object): 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): From 00e67092d81198248d211d4ca13448936998a6bb Mon Sep 17 00:00:00 2001 From: Eren G??lge Date: Tue, 21 Jun 2022 14:12:55 +0200 Subject: [PATCH 3/3] Bump up to v0.7.1 --- TTS/VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TTS/VERSION b/TTS/VERSION index bcaffe19..7deb86fe 100644 --- a/TTS/VERSION +++ b/TTS/VERSION @@ -1 +1 @@ -0.7.0 \ No newline at end of file +0.7.1 \ No newline at end of file