Update app.py
Browse files
app.py
CHANGED
|
@@ -229,7 +229,7 @@ with block:
|
|
| 229 |
with gr.Row():
|
| 230 |
with gr.Column():
|
| 231 |
model_name_textbox = gr.Textbox(
|
| 232 |
-
label="Model
|
| 233 |
)
|
| 234 |
revision_name_textbox = gr.Textbox(
|
| 235 |
label="Revision Model Name", placeholder="LLaMA"
|
|
@@ -241,7 +241,7 @@ with block:
|
|
| 241 |
"VideoLLM",
|
| 242 |
"Other",
|
| 243 |
],
|
| 244 |
-
label="Model
|
| 245 |
multiselect=False,
|
| 246 |
value="ImageLLM",
|
| 247 |
interactive=True,
|
|
@@ -254,18 +254,18 @@ with block:
|
|
| 254 |
|
| 255 |
LLM_type = gr.Dropdown(
|
| 256 |
choices=["Vicuna-7B", "Flan-T5-XL", "LLaMA-7B", "Other"],
|
| 257 |
-
label="LLM
|
| 258 |
multiselect=False,
|
| 259 |
value="LLaMA-7B",
|
| 260 |
interactive=True,
|
| 261 |
)
|
| 262 |
LLM_name_textbox = gr.Textbox(
|
| 263 |
-
label="LLM
|
| 264 |
placeholder="LLaMA-13B"
|
| 265 |
)
|
| 266 |
Evaluation_dimension = gr.Dropdown(
|
| 267 |
choices=["All", "Image", "Video"],
|
| 268 |
-
label="Evaluation
|
| 269 |
multiselect=False,
|
| 270 |
value="All",
|
| 271 |
interactive=True,
|
|
|
|
| 229 |
with gr.Row():
|
| 230 |
with gr.Column():
|
| 231 |
model_name_textbox = gr.Textbox(
|
| 232 |
+
label="Model Name", placeholder="LLaMA-7B"
|
| 233 |
)
|
| 234 |
revision_name_textbox = gr.Textbox(
|
| 235 |
label="Revision Model Name", placeholder="LLaMA"
|
|
|
|
| 241 |
"VideoLLM",
|
| 242 |
"Other",
|
| 243 |
],
|
| 244 |
+
label="Model Type",
|
| 245 |
multiselect=False,
|
| 246 |
value="ImageLLM",
|
| 247 |
interactive=True,
|
|
|
|
| 254 |
|
| 255 |
LLM_type = gr.Dropdown(
|
| 256 |
choices=["Vicuna-7B", "Flan-T5-XL", "LLaMA-7B", "Other"],
|
| 257 |
+
label="LLM Type",
|
| 258 |
multiselect=False,
|
| 259 |
value="LLaMA-7B",
|
| 260 |
interactive=True,
|
| 261 |
)
|
| 262 |
LLM_name_textbox = gr.Textbox(
|
| 263 |
+
label="LLM Model (for Other)",
|
| 264 |
placeholder="LLaMA-13B"
|
| 265 |
)
|
| 266 |
Evaluation_dimension = gr.Dropdown(
|
| 267 |
choices=["All", "Image", "Video"],
|
| 268 |
+
label="Evaluation Dimension",
|
| 269 |
multiselect=False,
|
| 270 |
value="All",
|
| 271 |
interactive=True,
|