FinancialSupport commited on
Commit
a608e49
1 Parent(s): 8d89fdf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -132,7 +132,7 @@ def filter_models(
132
  return filtered_df
133
 
134
  def get_data_totale():
135
- dataset = pd.read_csv("leaderboard_general.csv", sep=',')
136
  if 'model ' in dataset.columns:
137
  dataset.rename(columns={'model ': 'model'}, inplace=True)
138
  return dataset
@@ -257,7 +257,8 @@ with demo:
257
  with gr.TabItem('Eval aggiuntive'):
258
 
259
  gr.Markdown('''# Altre evaluation''')
260
- gr.Markdown('''Qui ci sono altri test di altri modelli valutati su molte metriche''')
 
261
  gr.Dataframe(get_data_totale)
262
 
263
 
 
132
  return filtered_df
133
 
134
  def get_data_totale():
135
+ dataset = pd.read_csv("mmlu_pro_it.csv", sep=',')
136
  if 'model ' in dataset.columns:
137
  dataset.rename(columns={'model ': 'model'}, inplace=True)
138
  return dataset
 
257
  with gr.TabItem('Eval aggiuntive'):
258
 
259
  gr.Markdown('''# Altre evaluation''')
260
+ gr.Markdown('''* classifica [INVALSI](https://huggingface.co/spaces/Crisp-Unimib/INVALSIbenchmark) gestita dai nostri amici del [CRISP](https://crispresearch.it/)''')
261
+ gr.Markdown('''* analisi dei modelli fatti da ita su [mmlu pro it](https://huggingface.co/datasets/efederici/MMLU-Pro-ita)''')
262
  gr.Dataframe(get_data_totale)
263
 
264