devingulliver commited on
Commit
339ab1a
β€’
1 Parent(s): 6ab6442

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -47,8 +47,13 @@ with gr.Blocks() as demo:
47
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
48
  with gr.Tab("πŸ… LLM Benchmark"):
49
  with gr.Row():
50
- namefilter = model_name = gr.Textbox(max_lines=1, label="Search by model name and hit Enter")
51
- typefilter = gr.CheckboxGroup(label="Filter by model type", choices=list(data["Type"].unique()), value=[n for n in data["Type"].unique() if n not in ["Pending"]])
 
 
 
 
 
52
  with gr.Column():
53
  archfilter = gr.CheckboxGroup(label="Filter by model architecture", choices=list(data["Architecture"].unique()), value=list(data["Architecture"].unique()))
54
  lcnsfilter = gr.CheckboxGroup(label="Filter by model license", choices=list(data["License"].unique()), value=list(data["License"].unique()))
 
47
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
48
  with gr.Tab("πŸ… LLM Benchmark"):
49
  with gr.Row():
50
+ with gr.Column():
51
+ namefilter = gr.Textbox(max_lines=1, label="Search by model name and hit Enter")
52
+ gr.Markdown("Show/hide columns: coming soon")
53
+
54
+ with gr.Column():
55
+ typefilter = gr.CheckboxGroup(label="Filter by model type", choices=list(data["Type"].unique()), value=[n for n in data["Type"].unique() if n not in ["Pending"]])
56
+
57
  with gr.Column():
58
  archfilter = gr.CheckboxGroup(label="Filter by model architecture", choices=list(data["Architecture"].unique()), value=list(data["Architecture"].unique()))
59
  lcnsfilter = gr.CheckboxGroup(label="Filter by model license", choices=list(data["License"].unique()), value=list(data["License"].unique()))