Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -163,15 +163,14 @@ def show_feedback_button():
|
|
163 |
with gr.Blocks() as interface:
|
164 |
gr.Markdown("# VBench Video Arena")
|
165 |
gr.Markdown("""
|
166 |
-
**Random 2
|
167 |
-
**Play Selection**
|
168 |
-
If you are interested, you can also leave your comments.""")
|
169 |
|
170 |
type_output = gr.Dropdown(label="Type", choices=types, value=types[0])
|
171 |
prompt_output = gr.Dropdown(label="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
|
175 |
display_button = gr.Button("🎇 Play Selection")
|
176 |
|
177 |
with gr.Row():
|
|
|
163 |
with gr.Blocks() as interface:
|
164 |
gr.Markdown("# VBench Video Arena")
|
165 |
gr.Markdown("""
|
166 |
+
**Random 2 Videos**: Randomly selects two models to compare on the same ability dimension and text prompt.\n
|
167 |
+
**Play Selection** Allows users to choose a model, dimension, and text prompt from drop-down menus and view the corresponding videos. """)
|
|
|
168 |
|
169 |
type_output = gr.Dropdown(label="Type", choices=types, value=types[0])
|
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")
|
174 |
display_button = gr.Button("🎇 Play Selection")
|
175 |
|
176 |
with gr.Row():
|