|
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() |