Update app.py
Browse files
app.py
CHANGED
@@ -49,9 +49,9 @@ with gr.Blocks() as demo:
|
|
49 |
with gr.Tab("π
LLM Benchmark"):
|
50 |
with gr.Row():
|
51 |
namefilter = model_name = gr.Textbox(max_lines=1, label="Search by model name")
|
52 |
-
typefilter = gr.Dropdown(label="Filter by model type", multiselect=True, choices=data["Type"].unique(), value=["Base","Chat"])
|
53 |
-
archfilter = gr.Dropdown(label="Filter by model architecture", multiselect=True, choices=data["Architecture"].unique(), value=data["Architecture"].unique())
|
54 |
-
lcnsfilter = gr.Dropdown(label="Filter by model license", multiselect=True, choices=data["License"].unique(), value=data["License"].unique())
|
55 |
|
56 |
table = gr.Dataframe()
|
57 |
|
|
|
49 |
with gr.Tab("π
LLM Benchmark"):
|
50 |
with gr.Row():
|
51 |
namefilter = model_name = gr.Textbox(max_lines=1, label="Search by model name")
|
52 |
+
typefilter = gr.Dropdown(label="Filter by model type", multiselect=True, choices=list(data["Type"].unique()), value=["Base","Chat"])
|
53 |
+
archfilter = gr.Dropdown(label="Filter by model architecture", multiselect=True, choices=list(data["Architecture"].unique()), value=list(data["Architecture"].unique()))
|
54 |
+
lcnsfilter = gr.Dropdown(label="Filter by model license", multiselect=True, choices=list(data["License"].unique()), value=list(data["License"].unique()))
|
55 |
|
56 |
table = gr.Dataframe()
|
57 |
|