devingulliver commited on
Commit
e8dad09
β€’
1 Parent(s): 9763699

Make it pretty

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -2,14 +2,16 @@ import gradio as gr
2
 
3
  with gr.Blocks() as demo:
4
  gr.HTML('<h1 style="text-align:center">Subquadratic LLM Leaderboard</h1>')
 
5
  with gr.Tab("πŸ… LLM Benchmark"):
6
  gr.Markdown("Table filters coming soon")
7
  gr.Dataframe("data.csv")
8
 
9
  with gr.Tab("πŸ“ About"):
10
- gr.Markdown("\n\nThis leaderboard evaluates LLMs with subquadratic architectures (ie RWKV & Mamba) on the same benchmarks as the Open LLM Leaderboard, with the goal of providing open evaluation results while the architectures themselves are pending inclusion in πŸ€— Transformers. \nThis leaderboard is under construction, check back regularly for further improvements!")
 
11
 
12
- with gr.Tab("πŸš€ Submit here! "):
13
  gr.Markdown("Coming soon")
14
 
15
 
 
2
 
3
  with gr.Blocks() as demo:
4
  gr.HTML('<h1 style="text-align:center">Subquadratic LLM Leaderboard</h1>')
5
+
6
  with gr.Tab("πŸ… LLM Benchmark"):
7
  gr.Markdown("Table filters coming soon")
8
  gr.Dataframe("data.csv")
9
 
10
  with gr.Tab("πŸ“ About"):
11
+ gr.Markdown("""The **Subquadratic LLM Leaderboard** evaluates LLMs with subquadratic architectures (ie RWKV & Mamba) on the same benchmarks as the Open LLM Leaderboard, with the goal of providing open evaluation results while the architectures themselves are pending inclusion in πŸ€— Transformers.
12
+ This leaderboard is under construction, check back regularly for further improvements!""")
13
 
14
+ with gr.Tab("πŸš€ Submit here!"):
15
  gr.Markdown("Coming soon")
16
 
17