devingulliver commited on
Commit
9127c44
β€’
1 Parent(s): 59c29ae

Make icons clearer

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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 ["βŒ› 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,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 ["βŒ› Pending"]],list(data["Architecture"].unique()),list(data["Model Size"].unique())), datatype="markdown")
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