henryL7 commited on
Commit
47531dc
·
1 Parent(s): 885d023

add rounding

Browse files
Files changed (1) hide show
  1. src/populate.py +1 -1
src/populate.py CHANGED
@@ -106,7 +106,7 @@ def load_leaderboard() -> pd.DataFrame:
106
  predictions["Agreement"].append(agr)
107
  predictions["Self-Accuracy"].append(models_acc)
108
  predictions["Self-Agreement"].append(models_agr)
109
- return pd.DataFrame(predictions).sort_values(by="Agreement", ascending=False).round(decomals=3)
110
 
111
 
112
 
 
106
  predictions["Agreement"].append(agr)
107
  predictions["Self-Accuracy"].append(models_acc)
108
  predictions["Self-Agreement"].append(models_agr)
109
+ return pd.DataFrame(predictions).sort_values(by="Agreement", ascending=False).round(decimals=3)
110
 
111
 
112