Spaces:
Runtime error
Runtime error
Commit
·
e1e8ba4
1
Parent(s):
7be06ce
Update app.py
Browse files
app.py
CHANGED
@@ -81,6 +81,6 @@ with demo:
|
|
81 |
|
82 |
button_gen_video = gr.Button("Generate Video")
|
83 |
output_interpolation = gr.Video(label="Generated Video")
|
84 |
-
button_gen_video.click(fn=generate_interpolation, inputs=[x1, x2, x3, x4, x5], outputs=output_interpolation)
|
85 |
|
86 |
demo.launch(debug=True, enable_queue=True)
|
|
|
81 |
|
82 |
button_gen_video = gr.Button("Generate Video")
|
83 |
output_interpolation = gr.Video(label="Generated Video")
|
84 |
+
button_gen_video.click(fn=generate_interpolation, inputs=[[x1, x2, x3, x4, x5]], outputs=output_interpolation)
|
85 |
|
86 |
demo.launch(debug=True, enable_queue=True)
|