devingulliver commited on
Commit
470c0b0
Β·
verified Β·
1 Parent(s): 3ea591c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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