From 0a61ea3b2dd0bbbed096bf6e363f4de98d6fc993 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Fri, 5 Mar 2021 02:50:38 +0100 Subject: [PATCH] replace urls --- hubconf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hubconf.py b/hubconf.py index 849371ea..d8589c94 100644 --- a/hubconf.py +++ b/hubconf.py @@ -9,7 +9,7 @@ def tts(model_name='tts_models/en/ljspeech/tacotron2-DCA', vocoder_name=None, us """TTS entry point for PyTorch Hub that provides a Synthesizer object to synthesize speech from a give text. Example: - >>> synthesizer = torch.hub.load('mozilla/TTS', 'tts', source='github') + >>> synthesizer = torch.hub.load('coqui-ai/TTS', 'tts', source='github') >>> wavs = synthesizer.tts("This is a test! This is also a test!!") wavs - is a list of values of the synthesized speech. @@ -33,5 +33,5 @@ def tts(model_name='tts_models/en/ljspeech/tacotron2-DCA', vocoder_name=None, us if __name__ == '__main__': - synthesizer = torch.hub.load('mozilla/TTS:hub_conf', 'tts', source='github') + synthesizer = torch.hub.load('coqui-ai/TTS:hub_conf', 'tts', source='github') synthesizer.tts("This is a test!")