devingulliver commited on
Commit
e169d9c
Β·
verified Β·
1 Parent(s): 5eaee12

Static mode

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -70,6 +70,7 @@ with gr.Blocks(css=".gradio-container{max-width:95%!important} .tab-buttons butt
70
 
71
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
72
  with gr.Tab("πŸ… LLM Benchmark"):
 
73
  with gr.Row():
74
  with gr.Column():
75
  namefilter = gr.Textbox(max_lines=1, placeholder="Search by model name and hit Enter...", show_label=False)
@@ -88,7 +89,8 @@ with gr.Blocks(css=".gradio-container{max-width:95%!important} .tab-buttons butt
88
 
89
  for filter in [colfilter,typefilter,archfilter,sizefilter]:
90
  filter.input(filter_table, [colfilter,namefilter,typefilter,archfilter,sizefilter], table)
91
-
 
92
  with gr.Tab("βš–οΈ Comparison"):
93
  gr.Markdown("This table is whitelisted to one model per architecture, specifically 1.5B models trained on The Pile for 1 epoch, for a direct comparison of architectures.")
94
  gr.Dataframe(data[data["Name"].isin(["devingulliver/llama-pile-350b","RWKV/rwkv-4-1b5-pile","state-spaces/mamba-1.4b","danfu09/H3-1.3B","state-spaces/mamba2-1.3b"])].drop(["Type","Model Size","Base Model"], axis=1), datatype="markdown")
@@ -109,7 +111,7 @@ with gr.Blocks(css=".gradio-container{max-width:95%!important} .tab-buttons butt
109
  with gr.Group():
110
  with gr.Row():
111
  model_name = gr.Textbox(max_lines=1, placeholder="Enter model name...", show_label=False, scale=4)
112
- submit = gr.Button("Submit", variant="primary", scale=0)
113
 
114
  output = gr.Markdown("Enter a public HF repo id, then hit Submit to add it to the evaluation queue.")
115
 
 
70
 
71
  with gr.Tabs(elem_classes="tab-buttons") as tabs:
72
  with gr.Tab("πŸ… LLM Benchmark"):
73
+ """
74
  with gr.Row():
75
  with gr.Column():
76
  namefilter = gr.Textbox(max_lines=1, placeholder="Search by model name and hit Enter...", show_label=False)
 
89
 
90
  for filter in [colfilter,typefilter,archfilter,sizefilter]:
91
  filter.input(filter_table, [colfilter,namefilter,typefilter,archfilter,sizefilter], table)
92
+ """
93
+ gr.Markdown("This tab temporarily disabled. If you need archived eval data, check the Files tab for data.csv.")
94
  with gr.Tab("βš–οΈ Comparison"):
95
  gr.Markdown("This table is whitelisted to one model per architecture, specifically 1.5B models trained on The Pile for 1 epoch, for a direct comparison of architectures.")
96
  gr.Dataframe(data[data["Name"].isin(["devingulliver/llama-pile-350b","RWKV/rwkv-4-1b5-pile","state-spaces/mamba-1.4b","danfu09/H3-1.3B","state-spaces/mamba2-1.3b"])].drop(["Type","Model Size","Base Model"], axis=1), datatype="markdown")
 
111
  with gr.Group():
112
  with gr.Row():
113
  model_name = gr.Textbox(max_lines=1, placeholder="Enter model name...", show_label=False, scale=4)
114
+ submit = gr.Button("Submit", variant="primary", scale=0, interactive=False)
115
 
116
  output = gr.Markdown("Enter a public HF repo id, then hit Submit to add it to the evaluation queue.")
117