From 54421b3ced98692c69df03ccf752c3405e4cc7af Mon Sep 17 00:00:00 2001 From: Shivam Mehta Date: Sun, 17 Sep 2023 10:54:41 +0000 Subject: [PATCH] preventing super slow synthesis in the interface --- matcha/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matcha/app.py b/matcha/app.py index 493d2bd..1e9321d 100644 --- a/matcha/app.py +++ b/matcha/app.py @@ -113,8 +113,8 @@ def main(): ) length_scale = gr.Slider( label="Length scale (Speaking rate)", - minimum=0.01, - maximum=3.0, + minimum=0.5, + maximum=1.5, step=0.05, value=1.0, interactive=True,