Update app.py
Browse files
app.py
CHANGED
@@ -34,8 +34,8 @@ gradio_pipeline = GradioPipeline(
|
|
34 |
)
|
35 |
|
36 |
@spaces.GPU()
|
37 |
-
def gpu_wrapped_execute_s_video(*args, **kwargs
|
38 |
-
return gradio_pipeline.execute_s_video(*args, **kwargs, progress)
|
39 |
|
40 |
# assets
|
41 |
title_md = "./assets/gradio_title.md"
|
|
|
34 |
)
|
35 |
|
36 |
@spaces.GPU()
|
37 |
+
def gpu_wrapped_execute_s_video(*args, **kwargs):
|
38 |
+
return gradio_pipeline.execute_s_video(*args, **kwargs, progress=gr.Progress(track_tqdm=True))
|
39 |
|
40 |
# assets
|
41 |
title_md = "./assets/gradio_title.md"
|