import gradio as gr with gr.Blocks() as demo: gr.HTML('

Subquadratic LLM Leaderboard

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