Spaces:
Runtime error
Runtime error
Make icons clearer
Browse files
app.py
CHANGED
|
@@ -65,7 +65,7 @@ with gr.Blocks(css=".tab-buttons button{font-size:1.3em}") as demo:
|
|
| 65 |
with gr.Row():
|
| 66 |
with gr.Column():
|
| 67 |
namefilter = gr.Textbox(max_lines=1, placeholder="Search by model name and hit Enter...", show_label=False)
|
| 68 |
-
typefilter = gr.CheckboxGroup(show_label=False, choices=list(data["Type"].unique()), value=[n for n in data["Type"].unique() if n not in ["
|
| 69 |
|
| 70 |
with gr.Column():
|
| 71 |
archfilter = gr.CheckboxGroup(label="Filter by model architecture", choices=list(data["Architecture"].unique()), value=list(data["Architecture"].unique()))
|
|
@@ -74,7 +74,7 @@ with gr.Blocks(css=".tab-buttons button{font-size:1.3em}") as demo:
|
|
| 74 |
with gr.Column():
|
| 75 |
colfilter = gr.CheckboxGroup(label="Hide columns", choices=list(data.columns)[2:], value=["MT-Bench (coming soon!)","Architecture","Model Size","Base Model"])
|
| 76 |
|
| 77 |
-
table = gr.Dataframe(filter_table(["MT-Bench (coming soon!)","Architecture","Model Size","Base Model"],"",[n for n in data["Type"].unique() if n not in ["
|
| 78 |
|
| 79 |
# actions
|
| 80 |
|
|
|
|
| 65 |
with gr.Row():
|
| 66 |
with gr.Column():
|
| 67 |
namefilter = gr.Textbox(max_lines=1, placeholder="Search by model name and hit Enter...", show_label=False)
|
| 68 |
+
typefilter = gr.CheckboxGroup(show_label=False, choices=list(data["Type"].unique()), value=[n for n in data["Type"].unique() if n not in ["⏳ Pending"]])
|
| 69 |
|
| 70 |
with gr.Column():
|
| 71 |
archfilter = gr.CheckboxGroup(label="Filter by model architecture", choices=list(data["Architecture"].unique()), value=list(data["Architecture"].unique()))
|
|
|
|
| 74 |
with gr.Column():
|
| 75 |
colfilter = gr.CheckboxGroup(label="Hide columns", choices=list(data.columns)[2:], value=["MT-Bench (coming soon!)","Architecture","Model Size","Base Model"])
|
| 76 |
|
| 77 |
+
table = gr.Dataframe(filter_table(["MT-Bench (coming soon!)","Architecture","Model Size","Base Model"],"",[n for n in data["Type"].unique() if n not in ["⏳ Pending"]],list(data["Architecture"].unique()),list(data["Model Size"].unique())), datatype="markdown")
|
| 78 |
|
| 79 |
# actions
|
| 80 |
|