From 628aaeae19a279c2d8375b1cecea57bfda3cde18 Mon Sep 17 00:00:00 2001 From: Frank Lee Date: Sat, 15 Jun 2024 22:52:00 +0800 Subject: [PATCH] [gradio] updated max num loop (#139) --- gradio/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gradio/app.py b/gradio/app.py index 9a741fe..aa7370b 100644 --- a/gradio/app.py +++ b/gradio/app.py @@ -602,7 +602,7 @@ def main(): num_loop = gr.Slider( value=1, minimum=1, - maximum=10, + maximum=20, step=1, label="Number of Loops", info="This will change the length of the generated video, keep it to 1 if you are not sure"