Upload app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
__all__ = ['block', 'make_clickable_model', 'make_clickable_user', 'get_submissions']
|
| 2 |
|
| 3 |
import gradio as gr
|
|
@@ -7,7 +8,6 @@ import pdb
|
|
| 7 |
import tempfile
|
| 8 |
import re
|
| 9 |
|
| 10 |
-
|
| 11 |
from constants import *
|
| 12 |
from src.auto_leaderboard.model_metadata_type import ModelType
|
| 13 |
|
|
@@ -718,8 +718,9 @@ with block:
|
|
| 718 |
interactive=True,
|
| 719 |
)
|
| 720 |
LLM_name_textbox = gr.Textbox(
|
| 721 |
-
label="LLM model (for Other)",
|
| 722 |
-
placeholder="LLaMA-13B"
|
|
|
|
| 723 |
)
|
| 724 |
Evaluation_dimension = gr.Dropdown(
|
| 725 |
choices=["All", "Image", "Video"],
|
|
|
|
| 1 |
+
|
| 2 |
__all__ = ['block', 'make_clickable_model', 'make_clickable_user', 'get_submissions']
|
| 3 |
|
| 4 |
import gradio as gr
|
|
|
|
| 8 |
import tempfile
|
| 9 |
import re
|
| 10 |
|
|
|
|
| 11 |
from constants import *
|
| 12 |
from src.auto_leaderboard.model_metadata_type import ModelType
|
| 13 |
|
|
|
|
| 718 |
interactive=True,
|
| 719 |
)
|
| 720 |
LLM_name_textbox = gr.Textbox(
|
| 721 |
+
label="LLM model (Required for Other)",
|
| 722 |
+
placeholder="LLaMA-13B",
|
| 723 |
+
value="LLaMA-13B",
|
| 724 |
)
|
| 725 |
Evaluation_dimension = gr.Dropdown(
|
| 726 |
choices=["All", "Image", "Video"],
|