From 0b5a5fbed21fdfd922432e3241c0920c8b6672cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexandre=20D=C3=A9fossez?= Date: Thu, 3 Jul 2025 14:55:24 +0200 Subject: [PATCH] plop --- scripts/tts_pytorch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/tts_pytorch.py b/scripts/tts_pytorch.py index c485614..3e36613 100644 --- a/scripts/tts_pytorch.py +++ b/scripts/tts_pytorch.py @@ -65,6 +65,7 @@ def main(): voice_path = tts_model.get_voice_path(args.voice) # CFG coef goes here because the model was trained with CFG distillation, # so it's not _actually_ doing CFG at inference time. + # Also, if you are generating a dialog, you should have at least two voices in the list. condition_attributes = tts_model.make_condition_attributes( [voice_path], cfg_coef=2.0 )