Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -163,11 +163,12 @@ def show_feedback_button():
|
|
163 |
with gr.Blocks() as interface:
|
164 |
gr.Markdown("# VBench Video Arena")
|
165 |
gr.Markdown("""
|
166 |
-
**
|
167 |
-
|
|
|
168 |
|
169 |
-
type_output = gr.Dropdown(label="
|
170 |
-
prompt_output = gr.Dropdown(label="Prompt", choices=dimension[types[0]], value=dimension[types[0]][0])
|
171 |
prompt_placeholder = gr.State()
|
172 |
with gr.Row():
|
173 |
random_button = gr.Button("🎲 Random 2 Videos")
|
|
|
163 |
with gr.Blocks() as interface:
|
164 |
gr.Markdown("# VBench Video Arena")
|
165 |
gr.Markdown("""
|
166 |
+
**What is VBench Arena?**: View the generated videos here, and you can optionally vote for your preferred video. This demo features over 180,000 generated videos, and you can explore videos generated by your chosen models (we already support 40 models) following your chosen text prompts.\n
|
167 |
+
- **Random 2 Videos**: Randomly selects two models to compare on the same ability dimension and text prompt.\n
|
168 |
+
- **Play Selection** Allows users to choose a model, dimension, and text prompt from drop-down menus and view the corresponding videos. """)
|
169 |
|
170 |
+
type_output = gr.Dropdown(label="Ability Dimension", choices=types, value=types[0])
|
171 |
+
prompt_output = gr.Dropdown(label="Text Prompt", choices=dimension[types[0]], value=dimension[types[0]][0])
|
172 |
prompt_placeholder = gr.State()
|
173 |
with gr.Row():
|
174 |
random_button = gr.Button("🎲 Random 2 Videos")
|