Spaces:
Runtime error
Runtime error
Ahsen Khaliq
commited on
Commit
•
9108e1f
1
Parent(s):
0fc4944
Update app.py
Browse files
app.py
CHANGED
@@ -39,12 +39,12 @@ inputs = gr.inputs.Video(label="Input Video")
|
|
39 |
outputs = gr.outputs.Video(label="Output Video")
|
40 |
|
41 |
title = "VideoGPT"
|
42 |
-
description = "demo for VideoGPT
|
43 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2104.10157'>VideoGPT: Video Generation using VQ-VAE and Transformers</a> | <a href='https://github.com/wilson1yan/VideoGPT'>Github Repo</a></p>"
|
44 |
|
45 |
examples = [
|
46 |
-
['
|
47 |
-
['
|
48 |
]
|
49 |
|
50 |
-
gr.Interface(vgpt, inputs, outputs, title=title, description=description, article=article, examples=examples).launch(debug=True)
|
|
|
39 |
outputs = gr.outputs.Video(label="Output Video")
|
40 |
|
41 |
title = "VideoGPT"
|
42 |
+
description = "Gradio demo for VideoGPT: Video Generation using VQ-VAE and Transformers for video reconstruction. To use it, simply upload your video, or click one of the examples to load them. Read more at the links below."
|
43 |
article = "<p style='text-align: center'><a href='https://arxiv.org/abs/2104.10157'>VideoGPT: Video Generation using VQ-VAE and Transformers</a> | <a href='https://github.com/wilson1yan/VideoGPT'>Github Repo</a></p>"
|
44 |
|
45 |
examples = [
|
46 |
+
['bear.mp4'],
|
47 |
+
['breakdance.mp4']
|
48 |
]
|
49 |
|
50 |
+
gr.Interface(vgpt, inputs, outputs, title=title, description=description, article=article, examples=examples,enable_queue=True).launch(debug=True)
|