From 1eb9a273e9213ca06dece9101dbbcbc59a3f671c Mon Sep 17 00:00:00 2001 From: lfchener Date: Mon, 13 Jul 2020 15:36:21 +0800 Subject: [PATCH] modified help massage of max_len in TransformerTTS synthesis. --- examples/transformer_tts/synthesis.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/transformer_tts/synthesis.py b/examples/transformer_tts/synthesis.py index effbffd..422eb6c 100644 --- a/examples/transformer_tts/synthesis.py +++ b/examples/transformer_tts/synthesis.py @@ -44,7 +44,8 @@ def add_config_options_to_parser(parser): "--max_len", type=int, default=1000, - help="The max length of audio when synthsis.") + help="The max length of spectrum when synthesize. If the length of synthetical spectrum is lager than max_len, spectrum will be cut off." + ) parser.add_argument( "--checkpoint_transformer", -- GitLab