Spaces:
Running
on
Zero
Running
on
Zero
Update gradio_app.py
Browse files- gradio_app.py +1 -1
gradio_app.py
CHANGED
@@ -32,7 +32,7 @@ def dynamicrafter_demo(result_dir='./tmp/', res=512):
|
|
32 |
else:
|
33 |
raise NotImplementedError(f"Unsupported resolution: {res}")
|
34 |
image2video = Image2Video(result_dir, resolution=resolution)
|
35 |
-
image2video.get_image = spaces.GPU(image2video.get_image, duration=120)
|
36 |
|
37 |
with gr.Blocks(analytics_enabled=False, css=css) as dynamicrafter_iface:
|
38 |
gr.Markdown(logo)
|
|
|
32 |
else:
|
33 |
raise NotImplementedError(f"Unsupported resolution: {res}")
|
34 |
image2video = Image2Video(result_dir, resolution=resolution)
|
35 |
+
image2video.get_image = spaces.GPU(image2video.get_image, duration=120, queue=False)
|
36 |
|
37 |
with gr.Blocks(analytics_enabled=False, css=css) as dynamicrafter_iface:
|
38 |
gr.Markdown(logo)
|