import gradio as gr
from gradio_leaderboard import Leaderboard, ColumnFilter, SelectColumns
import pandas as pd
from apscheduler.schedulers.background import BackgroundScheduler
from huggingface_hub import snapshot_download
from src.about import CITATION_BUTTON_LABEL, CITATION_BUTTON_TEXT, EVALUATION_QUEUE_TEXT, INTRODUCTION_TEXT, LLM_BENCHMARKS_TEXT, TITLE
from src.tasks import TASK_DESCRIPTIONS, MEASURE_DESCRIPTION
from src.display.css_html_js import custom_css
from src.display.utils import BENCHMARK_COLS, COLS, EVAL_COLS, EVAL_TYPES, AutoEvalColumn, ModelType, fields, WeightType, Precision
from src.envs import API, EVAL_REQUESTS_PATH, EVAL_RESULTS_PATH, QUEUE_REPO, REPO_ID, RESULTS_REPO, TOKEN
from src.populate import get_evaluation_queue_df, get_leaderboard_df
from src.submission.submit import add_new_eval
import random
import matplotlib.pyplot as plt
import re
import plotly.express as px
import plotly.graph_objects as go
import numpy as np
# === NEW: helper for prompt sensitivity (simple: only NER/REL and 3 prompts) ===
def calculate_prompt_sensitivity(dataframe, tasks, prompt_ids):
"""
Computes a simple Prompt Sensitivity Index (PSI) over the tasks
using the distribution of 'Best Prompt Id' across the provided prompt_ids.
"""
cv_per_task = []
for task in tasks:
prompt_col = f"{task} Best Prompt Id"
task_accuracies = []
for pid in prompt_ids:
total = len(dataframe[prompt_col].dropna()) if prompt_col in dataframe.columns else 0
count = (dataframe[prompt_col] == pid).sum() if prompt_col in dataframe.columns else 0
acc = (count / total * 100) if total > 0 else 0
task_accuracies.append(acc)
if task_accuracies:
mean_acc = np.mean(task_accuracies)
std_acc = np.std(task_accuracies)
cv_per_task.append((std_acc / mean_acc) if mean_acc > 0 else 0)
else:
cv_per_task.append(0)
mean_cv = np.mean(cv_per_task) if cv_per_task else 0
psi = 1.0 if mean_cv >= 0.5 else (mean_cv / 0.5)
return psi, mean_cv, cv_per_task
def create_best_model_comparison_table(dataframe, lang: str | None = None, shot: str | None = None):
"""
Table with best overall model per task and the model with the best prompt score.
Applies optional filters:
- lang in {EN, IT, SL, SK, GR, PL} or None/"All"
- shot in {"0","10"} or None/"All" (mapped to IS_FS False/True)
"""
tasks = ["NER", "REL", "RML", "HIS", "DIA"]
df = dataframe.copy()
if lang and lang != "All" and "LANG" in df.columns:
df = df[df["LANG"] == lang]
if shot and shot != "All" and "IS_FS" in df.columns:
df = df[df["IS_FS"] == (shot == "10")]
table_data = {'Task': [], 'Best Overall Model': [], 'CPS': [], 'Best Prompt Model': [], 'Acc.': []}
for task in tasks:
if task not in df.columns or df.empty:
continue
# Best overall on task
#max_idx = df[task].idxmax()
max_idx = pd.to_numeric(df[task], errors='coerce').idxmax()
try:
model_raw = df.loc[max_idx, 'Model']
except Exception as e:
break
if isinstance(model_raw, str) and '<' in model_raw:
match = re.search(r'>([^<]+)<', model_raw)
model_name = match.group(1) if match else model_raw
else:
model_name = str(model_raw)
comb_perf_value = df.loc[max_idx, task]
# Best prompt row for task
best_prompt_column = f"{task} Best Prompt"
if best_prompt_column in df.columns and df[best_prompt_column].notna().any():
best_prompt_idx= pd.to_numeric(df[best_prompt_column],errors='coerce').idxmax()
try:
best_prompt_model_raw = df.loc[best_prompt_idx, 'Model']
except Exception as e:
break
if isinstance(best_prompt_model_raw, str) and '<' in best_prompt_model_raw:
match = re.search(r'>([^<]+)<', best_prompt_model_raw)
best_prompt_model = match.group(1) if match else best_prompt_model_raw
else:
best_prompt_model = str(best_prompt_model_raw)
best_prompt_accuracy = df.loc[best_prompt_idx, best_prompt_column]
else:
best_prompt_model = "n/a"
best_prompt_accuracy = float('nan')
table_data['Task'].append(task)
table_data['Best Overall Model'].append(model_name)
table_data['CPS'].append(f"{comb_perf_value:.2f}")
table_data['Best Prompt Model'].append(best_prompt_model)
table_data['Acc.'].append(f"{best_prompt_accuracy:.2f}" if isinstance(best_prompt_accuracy, (int, float)) else "n/a")
fig = go.Figure(data=[go.Table(
columnwidth=[60, 220, 60, 220, 60],
header=dict(
values=[f'{col}' for col in table_data.keys()],
fill_color=['#2171b5', '#2171b5', '#2171b5', '#4292c6', '#4292c6'],
font=dict(color='white', size=12, family='Arial'),
align='center', height=30
),
cells=dict(
values=list(table_data.values()),
fill_color=[['#f0f0f0' if i % 2 == 0 else 'white' for i in range(len(table_data['Task']))]],
font=dict(color='#2c3e50', size=11, family='Arial'),
align=['center', 'left', 'center', 'left', 'center'],
height=30
)
)])
subtitle = []
subtitle.append(lang if (lang and lang != "All") else "All languages")
subtitle.append(f"{shot}-shot" if (shot and shot != "All") else "All shots")
fig.update_layout(
title={'text': f"Top Model per Task: CPS & Best Prompt — {', '.join(subtitle)}",
'font': {'family': 'Arial', 'size': 14, 'color': '#2c3e50'}},
font=dict(family="Arial", size=11),
height=420, margin=dict(l=20, r=20, t=50, b=80)
)
return fig
# === NEW: Best-model comparison table (only NER, REL) ===
def create_best_model_comparison_table_without_lang(dataframe):
"""
Table with the best overall model per task (NER, REL,) and the model that
achieves the best score with its own best prompt.
"""
tasks = ["NER", "REL", "RML", "HIS", "DIA"]
table_data = {'Task': [], 'Best Overall Model': [], 'CPS': [], 'Best Prompt Model': [], 'Acc.': []}
for task in tasks:
if task not in dataframe.columns:
continue
# Best overall on the task's combined performance
max_idx = dataframe[task].idxmax()
model_raw = dataframe.loc[max_idx, 'Model']
if isinstance(model_raw, str) and '<' in model_raw:
match = re.search(r'>([^<]+)<', model_raw)
model_name = match.group(1) if match else model_raw
else:
model_name = str(model_raw)
comb_perf_value = dataframe.loc[max_idx, task]
# Model with the best prompt for this task
best_prompt_column = f"{task} Best Prompt"
if best_prompt_column in dataframe.columns:
best_prompt_idx = dataframe[best_prompt_column].idxmax()
best_prompt_model_raw = dataframe.loc[best_prompt_idx, 'Model']
if isinstance(best_prompt_model_raw, str) and '<' in best_prompt_model_raw:
match = re.search(r'>([^<]+)<', best_prompt_model_raw)
best_prompt_model = match.group(1) if match else best_prompt_model_raw
else:
best_prompt_model = str(best_prompt_model_raw)
best_prompt_accuracy = dataframe.loc[best_prompt_idx, best_prompt_column]
else:
best_prompt_model = "n/a"
best_prompt_accuracy = float('nan')
table_data['Task'].append(task)
table_data['Best Overall Model'].append(model_name)
table_data['CPS'].append(f"{comb_perf_value:.2f}")
table_data['Best Prompt Model'].append(best_prompt_model)
table_data['Acc.'].append(f"{best_prompt_accuracy:.2f}" if isinstance(best_prompt_accuracy, (int, float)) else "n/a")
fig = go.Figure(data=[go.Table(
columnwidth=[60, 220, 60, 220, 60],
header=dict(
values=[f'{col}' for col in table_data.keys()],
fill_color=['#2171b5', '#2171b5', '#2171b5', '#4292c6', '#4292c6'],
font=dict(color='white', size=12, family='Arial'),
align='center', height=30
),
cells=dict(
values=list(table_data.values()),
fill_color=[['#f0f0f0' if i % 2 == 0 else 'white' for i in range(len(table_data['Task']))]],
font=dict(color='#2c3e50', size=11, family='Arial'),
align=['center', 'left', 'center', 'left', 'center'],
height=30
)
)])
fig.update_layout(
title={'text': "Top Model per Task: CPS & Best Prompt (NER/REL)",
'font': {'family': 'Arial', 'size': 14, 'color': '#2c3e50'}},
font=dict(family="Arial", size=11),
height=420, margin=dict(l=20, r=20, t=50, b=80)
)
fig.add_annotation(
text=("Best Overall Model uses the task's primary metric (CPS). "
"Best Prompt Model is the one whose own best prompt yields the highest score."),
xref="paper", yref="paper", x=0.5, y=-0.20, showarrow=False,
font=dict(size=11, color="gray", family="Arial"), align="center", xanchor="center"
)
return fig
def create_prompt_heatmap(dataframe, lang: str | None = None, shot: str | None = None):
"""
Heatmap of share (%) of models whose BEST prompt is each pid, for NER/REL with prompts p1..p3.
Optional filters:
- lang: None or one of EN/IT/SL/SK/GR/PL (None means All)
- shot: None or "0"/"10" (None means All) mapped to IS_FS False/True
"""
tasks = ["NER", "REL", "RML", "HIS", "DIA"]
df = dataframe.copy()
# Language filter
if lang and lang != "All" and "LANG" in df.columns:
df = df[df["LANG"] == lang]
# Shot filter -> IS_FS (10-shot=True, 0-shot=False)
if shot and shot != "All" and "IS_FS" in df.columns:
df = df[df["IS_FS"] == (shot == "10")]
# Collect prompt ids present, normalize labels to p1..p3
def label_for(pid):
if isinstance(pid, str): return pid
try: return f"p{int(pid)}"
except Exception: return str(pid)
all_ids = set()
for task in tasks:
col = f"{task} Best Prompt Id"
if col in df.columns:
all_ids.update(df[col].dropna().unique())
prompt_ids_raw = sorted(list(all_ids), key=lambda x: int(re.sub(r'[^0-9]', '', str(x)) or 0))
prompt_ids_raw = [pid for pid in prompt_ids_raw if label_for(pid) in {"p1", "p2", "p3"}] or [1, 2, 3]
y_tick_labels = [label_for(pid) for pid in prompt_ids_raw]
matrix, hovers = [], []
for pid in prompt_ids_raw:
row, hover_row = [], []
for task in tasks:
col = f"{task} Best Prompt Id"
if col in df.columns and len(df[col].dropna()) > 0:
series = df[col].dropna()
def same_pid(v):
a = re.sub(r'[^0-9]', '', str(v))
b = re.sub(r'[^0-9]', '', str(pid))
return a == b and a != ""
total = len(series)
count = sum(same_pid(v) for v in series)
pct = (count / total * 100) if total > 0 else 0
row.append(pct)
hover_row.append(f"{task} — {label_for(pid)}
Models: {count}/{total}
Percentage: {pct:.1f}%")
else:
row.append(0); hover_row.append(f"{task} — {label_for(pid)}
No data")
matrix.append(row); hovers.append(hover_row)
fig = go.Figure(data=go.Heatmap(
z=matrix, x=tasks, y=y_tick_labels,
colorscale=[[0,'#f7fbff'],[0.2,'#deebf7'],[0.4,'#9ecae1'],[0.6,'#4292c6'],[0.8,'#2171b5'],[1,'#08519c']],
text=[[f"{val:.0f}%" if val is not None else "" for val in row] for row in matrix],
texttemplate="%{text}", textfont={"size": 11, "family": "Arial"},
hovertemplate='%{customdata}
Models: {count}/{total}
Percentage: {pct:.1f}%"
)
else:
row.append(0); hover_row.append(f"{task} — {label_for(pid)}
No data")
matrix.append(row)
hovers.append(hover_row)
fig = go.Figure(data=go.Heatmap(
z=matrix, x=tasks, y=y_tick_labels,
colorscale=[[0,'#f7fbff'],[0.2,'#deebf7'],[0.4,'#9ecae1'],[0.6,'#4292c6'],[0.8,'#2171b5'],[1,'#08519c']],
text=[[f"{val:.0f}%" if val is not None else "" for val in row] for row in matrix],
texttemplate="%{text}",
textfont={"size": 11, "family": "Arial"},
hovertemplate='%{customdata}
Mean Delta Accuracy: %{y:.2f}%
"
"",
xref="paper", yref="paper",
x=0, y=-0.2,
showarrow=False,
font=dict(size=11, color="gray"),
align="left"
)
return fig
def boxplot_per_task(dataframe=None, baselines=None, references=None):
#print(dataframe.columns)
#tasks = ["TE", "SA", "HS", "AT", "WIC", "FAQ", "LS", "SU", "NER", "REL"]
tasks =["NER", "REL", "RML", "HIS", "DIA"]
if dataframe is None:
np.random.seed(42)
dataframe = pd.DataFrame({
task: np.random.uniform(0.4, 0.9, 20) * 100
for task in tasks
})
if baselines is None:
baselines = {task: np.random.randint(50, 70) for task in tasks}
colors = ["#1f77b4", "#ff7f0e", "#2ca02c", "#d62728", "#9467bd",
"#8c564b", "#e377c2", "#7f7f7f", "#bcbd22", "#17becf"]
fig = go.Figure()
for i, task in enumerate(tasks):
if task in dataframe.columns:
y_data = dataframe[task].dropna().tolist()
# boxplot
fig.add_trace(go.Box(
y=y_data,
name=task,
marker=dict(color=colors[i]),
line=dict(color="black", width=2),
fillcolor=colors[i],
opacity=0.7,
hovertemplate=""+task+"
Accuracy: %{y:.2f}%
"
#"models at EVALITA (dashed black line); in NER and REL they remain lower.
"
# "Dashed red lines show GPT-4o reference results for generative tasks."
),
xref="paper", yref="paper",
x=0.5, y=-0.30,
showarrow=False,
font=dict(size=11, color="gray"),
align="left"
)
fig.update_yaxes(range=[0, 100], fixedrange=True)
return fig
# EVALITA results
BASELINES = {
"TE":71.00, "SA": 66.38, "HS": 80.88, "AT": 82.40, "WIC": 85.00,
"LS": 38.82, "SU": 38.91, "NER":88.00, "REL": 62.99
}
# GPT-4o
REFERENCES = {
"NER": 79.11,
"REL": 63.32,
"LS": 59.25,
"SU": 33.04
}
def boxplot_prompts_per_task(dataframe, tasks=None):
if tasks is None:
tasks = ["TE", "SA", "HS", "AT", "WIC", "FAQ", "LS", "SU", "NER", "REL"]
# Lista delle colonne da aggiornare
cols_to_update = ["REL Best Prompt Id", "NER Best Prompt Id", "SU Best Prompt Id", "LS Best Prompt Id"]
# Applichiamo la trasformazione
for col in cols_to_update:
dataframe[col] = dataframe[col].replace({1: 7, 2: 8})
fig = go.Figure()
# Liste per creare una sola voce in legenda per Average e Best
avg_x, avg_y = [], []
best_x, best_y, best_text = [], [], []
for task in tasks:
avg_col = f"{task} Prompt Average"
best_col = f"{task} Best Prompt"
best_id_col = f"{task} Best Prompt Id"
if all(col in dataframe.columns for col in [avg_col, best_col, best_id_col]):
avg_value = dataframe[avg_col].mean()
avg_x.append(task)
avg_y.append(avg_value)
best_value = dataframe[best_col].mean()
best_x.append(task)
best_y.append(best_value)
best_id = dataframe[best_id_col].mode()[0] # Most frequent best prompt id
best_text.append(f"P:{best_id}")
# Barre Average Accuracy (azzurro)
fig.add_trace(go.Bar(
x=avg_x,
y=avg_y,
name="Avg. Accuracy",
marker_color="#1f77b4",
))
# Barre Best Prompt (rosso)
fig.add_trace(go.Bar(
x=best_x,
y=best_y,
name="Best Prompt",
marker_color="#d62728",
))
# Testo sopra barre Best Prompt con ID
for x, y, text in zip(best_x, best_y, best_text):
fig.add_annotation(
x=x,
y=y + 3, # leggermente sopra la barra
text=text,
showarrow=False,
font=dict(size=12, color="black")
)
fig.update_layout(
title= "Prompt Accuracy: Avg vs Best",
xaxis_title="Task",
yaxis_title="Combined Performance",
barmode='group',
template="plotly_white",
font=dict(family="Arial", size=10),
yaxis=dict(range=[0, 100], fixedrange=True)
)
# caption come annotazione separata
fig.add_annotation(
text="There is no single prompt that performs best across all tasks.
"
"Different prompts achieve the highest accuracy on different tasks.",
xref="paper", yref="paper",
x=0.5, y=-0.3,
showarrow=False,
font=dict(size=11, color="gray"),
align="center",
xanchor="center"
)
return fig
def line_chart(dataframe):
# Normalizza le dimensioni per avere marker non troppo piccoli né enormi
def scale_sizes(values, min_size=8, max_size=30):
vmin, vmax = min(values), max(values)
return [
min_size + (val - vmin) / (vmax - vmin) * (max_size - min_size) if vmax > vmin else (min_size + max_size) / 2
for val in values
]
# dati in base a IS_FS
df_true = dataframe[dataframe['IS_FS'] == True]
df_false = dataframe[dataframe['IS_FS'] == False]
# Estrai valori x, y e labels
x_true = df_true['#Params (B)'].tolist()
y_true = df_true['Avg. Comb. Perf. ⬆️'].tolist()
labels_true = [re.search(r'>([^<]+)<', m).group(1) for m in df_true['Model'].tolist()]
x_false = df_false['#Params (B)'].tolist()
y_false = df_false['Avg. Comb. Perf. ⬆️'].tolist()
labels_false = [re.search(r'>([^<]+)<', m).group(1) for m in df_false['Model'].tolist()]
fig = go.Figure()
# Punti IS_FS=True
fig.add_trace(go.Scatter(
x=x_true,
y=y_true,
mode='markers',
name='10-Shot',
marker=dict(
color='blue',
size=scale_sizes(x_true)
),
hovertemplate='%{customdata}
#Params: %{x}
Performance: %{y}
#Params: %{x}
Performance: %{y}
"
"with 10-shot can outperform larger zero-shot models.",
xref="paper", yref="paper",
x=0.5, y=-0.3, # 👈 centrata
showarrow=False,
font=dict(size=11, color="gray"),
align="center",
xanchor="center" # 👈 ancora centrata rispetto al testo
)
fig.update_xaxes(fixedrange=True, rangeslider_visible=False)
fig.update_yaxes(fixedrange=True)
return fig
# Define task metadata (icons, names, descriptions)
TASK_METADATA_MULTIPLECHOICE = {
#"TE": {"icon": "📊", "name": "Textual Entailment", "tooltip": ""},
#"SA": {"icon": "😃", "name": "Sentiment Analysis", "tooltip": ""},
#"HS": {"icon": "⚠️", "name": "Hate Speech", "tooltip": ""},
#"AT": {"icon": "🏥", "name": "Admission Test", "tooltip": ""},
#"WIC": {"icon": "🔤", "name": "Word in Context", "tooltip": ""},
#"FAQ": {"icon": "❓", "name": "Frequently Asked Questions", "tooltip": ""}
}
# Define task metadata (icons, names, descriptions)
TASK_METADATA_GENERATIVE = {
"NER": {"icon": "🏷️", "name": "Named Entity Recognition", "tooltip": ""},
"REL": {"icon": "🔗", "name": "Relation Extraction", "tooltip": ""},
"RML": {"icon": "😃", "name": "CRF RML", "tooltip": "CRF RML"},
"DIA": {"icon": "🏥", "name": "CRF Diagnosis", "tooltip": "CRF Diagnosis"},
"HIS": {"icon": "📝", "name": "CRF History", "tooltip": "CRF History"},
}
def restart_space():
"""Restart the Hugging Face space."""
API.restart_space(repo_id=REPO_ID)
def init_leaderboard(dataframe, default_selection=None, hidden_columns=None):
"""
Initialize and return the leaderboard when it is first loaded or when 'benchmark' is selected.
The table is sorted based on the "Avg. Combined Performance" field.
"""
if dataframe is None or dataframe.empty:
raise ValueError("Leaderboard DataFrame is empty or None.")
#print("????????????????????????????????", mean_of_max_per_field(dataframe))
sorted_dataframe = dataframe.sort_values(by="Avg. Comb. Perf. ⬆️", ascending=False)
sorted_dataframe = sorted_dataframe.reset_index(drop=True)
sorted_dataframe["Rank"] = sorted_dataframe.index + 1
# Flag per sapere se la medaglia è già stata assegnata per categoria e tipo
large_medal_fs_assigned = False
medium_medal_fs_assigned = False
small_medal_fs_assigned = False
large_medal_0shot_assigned = False
medium_medal_0shot_assigned = False
small_medal_0shot_assigned = False
# Lista temporanea per salvare i nuovi valori della colonna Model
new_model_column = []
for _, row in sorted_dataframe.iterrows():
if row['IS_FS']: # 10-Few-Shot
if row["Size"] == "🔵🔵🔵" and not large_medal_fs_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🔵🏆")
large_medal_fs_assigned = True
elif row["Size"] == "🔵🔵" and not medium_medal_fs_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🏆")
medium_medal_fs_assigned = True
elif row["Size"] == "🔵" and not small_medal_fs_assigned:
new_model_column.append(f"{row['Model']} 🔵🏆")
small_medal_fs_assigned = True
else:
new_model_column.append(row["Model"])
else: # 0-Shot
if row["Size"] == "🔵🔵🔵" and not large_medal_0shot_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🔵🎖️")
large_medal_0shot_assigned = True
elif row["Size"] == "🔵🔵" and not medium_medal_0shot_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🎖️")
medium_medal_0shot_assigned = True
elif row["Size"] == "🔵" and not small_medal_0shot_assigned:
new_model_column.append(f"{row['Model']} 🔵🎖️")
small_medal_0shot_assigned = True
else:
new_model_column.append(row["Model"])
# Lista delle colonne da aggiornare
#cols_to_update = ["REL Best Prompt Id", "NER Best Prompt Id", "SU Best Prompt Id", "LS Best Prompt Id"]
# Applichiamo la trasformazione
#for col in cols_to_update:
# dataframe[col] = dataframe[col].replace({1: 7, 2: 8})
# Aggiorna la colonna Model
sorted_dataframe["Model"] = new_model_column
field_list = fields(AutoEvalColumn)
return Leaderboard(
value=sorted_dataframe,
datatype=[c.type for c in field_list],
search_columns=[AutoEvalColumn.model.name, AutoEvalColumn.license.name],
hide_columns=hidden_columns or [c.name for c in field_list if c.hidden],
filter_columns=[
ColumnFilter(AutoEvalColumn.fewshot_symbol.name, type="checkboxgroup", label="N-Shot Learning (FS): "),
ColumnFilter(AutoEvalColumn.LANG.name, type="checkboxgroup", label="Languges: "),
ColumnFilter(AutoEvalColumn.params.name, type="slider", min=0, max = 100, default = [0,100], label="Select the number of parameters (B)"),
],
bool_checkboxgroup_label="Evaluation Mode",
interactive=False,
)
def update_task_leaderboard(dataframe, default_selection=None, hidden_columns=None):
"""
Update and return the leaderboard when a specific task is selected.
The table is sorted based on the "Combined Performance" field.
"""
if dataframe is None or dataframe.empty:
raise ValueError("Leaderboard DataFrame is empty or None.")
#sorted_dataframe = dataframe.sort_values(by="Combined Performance", ascending=False)
clean_df = dataframe.assign( **{"Combined Performance": pd.to_numeric(dataframe["Combined Performance"], errors="coerce")}).loc[lambda df: df["Combined Performance"].notna() & (df["Combined Performance"] != 0)]
sorted_dataframe = clean_df.sort_values(by="Combined Performance", ascending=False)
# aggiungo la colonna rank in base alla posizione
sorted_dataframe = sorted_dataframe.reset_index(drop=True)
sorted_dataframe["Rank"] = sorted_dataframe.index + 1
# Flag per sapere se la medaglia è già stata assegnata per categoria e tipo
large_medal_fs_assigned = False
medium_medal_fs_assigned = False
small_medal_fs_assigned = False
large_medal_0shot_assigned = False
medium_medal_0shot_assigned = False
small_medal_0shot_assigned = False
# Lista temporanea per salvare i nuovi valori della colonna Model
new_model_column = []
for _, row in sorted_dataframe.iterrows():
if row['IS_FS']: # 5-Few-Shot
if row["Size"] == "🔵🔵🔵" and not large_medal_fs_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🔵🏆")
large_medal_fs_assigned = True
elif row["Size"] == "🔵🔵" and not medium_medal_fs_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🏆")
medium_medal_fs_assigned = True
elif row["Size"] == "🔵" and not small_medal_fs_assigned:
new_model_column.append(f"{row['Model']} 🔵🏆")
small_medal_fs_assigned = True
else:
new_model_column.append(row["Model"])
else: # 0-Shot
if row["Size"] == "🔵🔵🔵" and not large_medal_0shot_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🔵🎖️")
large_medal_0shot_assigned = True
elif row["Size"] == "🔵🔵" and not medium_medal_0shot_assigned:
new_model_column.append(f"{row['Model']} 🔵🔵🎖️")
medium_medal_0shot_assigned = True
elif row["Size"] == "🔵" and not small_medal_0shot_assigned:
new_model_column.append(f"{row['Model']} 🔵🎖️")
small_medal_0shot_assigned = True
else:
new_model_column.append(row["Model"])
# Aggiorna la colonna Model
sorted_dataframe["Model"] = new_model_column
pd.set_option('display.max_colwidth', None)
#print("========================", dataframe['Model'])
#print(sorted_dataframe['Combined Performance'])
field_list = fields(AutoEvalColumn)
return Leaderboard(
value=sorted_dataframe,
#datatype=[c.type for c in field_list],
datatype=[c.type for c in field_list] + [int],
#select_columns=SelectColumns(
# default_selection=default_selection or [c.name for c in field_list if c.displayed_by_default],
# cant_deselect=[c.name for c in field_list if c.never_hidden],
# label="Select Columns to Display:",
#),
search_columns=[AutoEvalColumn.model.name, AutoEvalColumn.license.name],
hide_columns=hidden_columns or [c.name for c in field_list if c.hidden],
filter_columns=[
ColumnFilter(AutoEvalColumn.fewshot_symbol.name, type="checkboxgroup", label="N-Shot Learning (FS): "),
ColumnFilter(AutoEvalColumn.LANG.name, type="checkboxgroup", label="Languges: "),
ColumnFilter(AutoEvalColumn.params.name, type="slider", min=0, max=100, default=[0, 100],
label="Select the number of parameters (B)"),
],
bool_checkboxgroup_label="Evaluation Mode",
interactive=False
)
def download_snapshot(repo, local_dir):
"""Try to download a snapshot from Hugging Face Hub."""
try:
print(f"Downloading from {repo} to {local_dir}...")
snapshot_download(repo_id=repo, local_dir=local_dir, repo_type="dataset", tqdm_class=None, etag_timeout=30, token=TOKEN)
except Exception as e:
print(f"Error downloading {repo}: {e}")
restart_space()
# Initialize the app by downloading snapshots
download_snapshot(QUEUE_REPO, EVAL_REQUESTS_PATH)
download_snapshot(RESULTS_REPO, EVAL_RESULTS_PATH)
# Load leaderboard data
LEADERBOARD_DF = get_leaderboard_df(EVAL_RESULTS_PATH, EVAL_REQUESTS_PATH, COLS, BENCHMARK_COLS)
finished_eval_queue_df, running_eval_queue_df, pending_eval_queue_df = get_evaluation_queue_df(EVAL_REQUESTS_PATH, EVAL_COLS)
#print(LEADERBOARD_DF.columns.tolist())
theoretical_max_combined_perf = mean_of_max_per_field(LEADERBOARD_DF)
# Prepare the main interface
demo = gr.Blocks(css=custom_css)
with demo:
#gr.HTML(TITLE)
gr.HTML(
"""