Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
devingulliver
/
subquadratic-llm-leaderboard
like
18
Running
App
Files
Files
Community
1
devingulliver
commited on
Jan 28
Commit
0dcfe74
•
1 Parent(s):
0f7c180
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
3
+
with gr.Blocks() as demo:
4
+
gr.Markdown("# Subquadratic LLM Leaderboard")
5
+
gr.Dataframe("data.csv")
6
+
7
+
demo.launch()