Datasets:
Junetheriver
commited on
Commit
·
0986f4b
1
Parent(s):
beb4d85
added apps.py
Browse files- apps.py +11 -0
- leaderboard/wired_network.csv +3 -0
apps.py
ADDED
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# gradio display leaderboard
|
2 |
+
|
3 |
+
import gradio as gr
|
4 |
+
import pandas as pd
|
5 |
+
|
6 |
+
def leaderboard():
|
7 |
+
df = pd.read_csv('leaderboard/wired_network.csv')
|
8 |
+
return df
|
9 |
+
|
10 |
+
iface = gr.Interface(fn=leaderboard, title="Leaderboard", description="Display leaderboard", allow_flagging=False)
|
11 |
+
iface.launch()
|
leaderboard/wired_network.csv
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
Model, Zeroshot, Fewshot(3-shot), Best Score
|
2 |
+
ChatGPT, 80, 80, 80
|
3 |
+
GPT-3, 23, 23, 23
|