devingulliver commited on
Commit
7f8e867
β€’
1 Parent(s): 339ab1a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -47,14 +47,14 @@ 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
- 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()))
60
 
 
47
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
48
  with gr.Tab("πŸ… LLM Benchmark"):
49
  with gr.Row():
50
+ with gr.Column(variant="panel"):
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(variant="panel"):
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(variant="panel"):
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()))
60