Spaces:
Sleeping
Sleeping
Add description (#1)
Browse files- Add description (9249ed847cd31eb336e1a24de8cb65f1fa825d93)
Co-authored-by: Merve Noyan <[email protected]>
app.py
CHANGED
@@ -70,7 +70,7 @@ examples = [
|
|
70 |
["a panda is surfing", 4, 128, 128, 10, 7.5]
|
71 |
]
|
72 |
|
73 |
-
|
74 |
|
75 |
demo_app = gr.Interface(
|
76 |
fn=tune_video_predict,
|
@@ -80,6 +80,7 @@ demo_app = gr.Interface(
|
|
80 |
cache_examples=False,
|
81 |
title="Tune-A-Video",
|
82 |
theme="huggingface",
|
|
|
83 |
)
|
84 |
|
85 |
demo_app.launch(debug=True, enable_queue=True)
|
|
|
70 |
["a panda is surfing", 4, 128, 128, 10, 7.5]
|
71 |
]
|
72 |
|
73 |
+
description = "This generates video from an input text, using [one-shot tuning of diffusion models](https://arxiv.org/abs/2212.11565). To use it, simply input a text."
|
74 |
|
75 |
demo_app = gr.Interface(
|
76 |
fn=tune_video_predict,
|
|
|
80 |
cache_examples=False,
|
81 |
title="Tune-A-Video",
|
82 |
theme="huggingface",
|
83 |
+
description=description
|
84 |
)
|
85 |
|
86 |
demo_app.launch(debug=True, enable_queue=True)
|