Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
FinancialSupport
commited on
Commit
•
d06a894
1
Parent(s):
41609dc
Upload app.py
Browse files
app.py
CHANGED
@@ -2,17 +2,23 @@ import gradio as gr
|
|
2 |
import pandas as pd
|
3 |
|
4 |
csv_filename = 'leaderboard.csv'
|
|
|
5 |
|
6 |
-
def
|
7 |
-
|
8 |
-
df = pd.read_csv(csv_filename, sep=';')
|
9 |
-
gr.Markdown("# Classifica degli LLM italiani")
|
10 |
-
link = "https://forms.gle/Gc9Dfu52xSBhQPpAA"
|
11 |
-
gr.Markdown(f"I modelli sono testati su SQuAD-it e ordinati per F1 Score e EM (Exact Match).Si ringrazia il @galatolo per il codice dell'eval. Se volete aggiungere il vostro modello compilate il form {link}")
|
12 |
-
gr.Dataframe(df)
|
13 |
|
14 |
-
|
|
|
15 |
|
16 |
-
|
|
|
|
|
|
|
17 |
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
demo.launch()
|
|
|
2 |
import pandas as pd
|
3 |
|
4 |
csv_filename = 'leaderboard.csv'
|
5 |
+
url = 'https://docs.google.com/spreadsheets/d/1Oh3nrbdWjKuh9twJsc9yJLppiJeD_BZyKgCTOxRkALM/export?format=csv'
|
6 |
|
7 |
+
def get_data():
|
8 |
+
return pd.read_csv(url)
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
+
with gr.Blocks() as demo:
|
11 |
+
with gr.Tab('Classifica'):
|
12 |
|
13 |
+
gr.Markdown("# Classifica degli LLM italiani")
|
14 |
+
form_link = "https://forms.gle/Gc9Dfu52xSBhQPpAA"
|
15 |
+
gr.Markdown(f"I modelli sono testati su SQuAD-it e ordinati per F1 Score e EM (Exact Match).Si ringrazia il @galatolo per il codice dell'eval. Se volete aggiungere il vostro modello compilate il form {form_link}")
|
16 |
+
gr.Dataframe(pd.read_csv(csv_filename, sep=';'))
|
17 |
|
18 |
+
with gr.Tab('Test della community'):
|
19 |
+
gr.Markdown("# Evaluation aggiuntive fatte dalla community")
|
20 |
+
discord_link = 'https://discord.com/invite/nfgaTG3H'
|
21 |
+
gr.Markdown(f"@giux78 sta lavorando sull'integrazione di nuovi dataset di benchmark italiani. Se volete contribuire anche voi unitevi al discord della community {discord_link}")
|
22 |
+
gr.DataFrame(get_data, every=3600)
|
23 |
+
|
24 |
demo.launch()
|