devingulliver's picture
Make it pretty
e8dad09 verified
raw
history blame
793 Bytes
import gradio as gr
with gr.Blocks() as demo:
gr.HTML('<h1 style="text-align:center">Subquadratic LLM Leaderboard</h1>')
with gr.Tab("πŸ… LLM Benchmark"):
gr.Markdown("Table filters coming soon")
gr.Dataframe("data.csv")
with gr.Tab("πŸ“ About"):
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.
This leaderboard is under construction, check back regularly for further improvements!""")
with gr.Tab("πŸš€ Submit here!"):
gr.Markdown("Coming soon")
demo.launch()