From ec94ff36916045c16258986e116c99cdc8becbdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 6 Apr 2021 11:22:25 +0200 Subject: [PATCH] update docstring --- TTS/utils/synthesizer.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/TTS/utils/synthesizer.py b/TTS/utils/synthesizer.py index 53e71747..cd6a6de2 100644 --- a/TTS/utils/synthesizer.py +++ b/TTS/utils/synthesizer.py @@ -17,7 +17,9 @@ from TTS.tts.utils.text import make_symbols, phonemes, symbols class Synthesizer(object): def __init__(self, tts_checkpoint, tts_config, vocoder_checkpoint=None, vocoder_config=None, use_cuda=False): - """Encapsulation of tts and vocoder models for inference. + """General TTS interface for inference. It takes a tts and a vocoder + model and synthesize speech from the provided text with a basic text + formatting. TODO: handle multi-speaker and GST inference.