henryL7 commited on
Commit
885d023
·
1 Parent(s): 23c4816

add rounding

Browse files
Files changed (1) hide show
  1. src/populate.py +1 -2
src/populate.py CHANGED
@@ -106,8 +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
- predictions = sorted(predictions.items(), key=lambda x: x[2])
110
- return pd.DataFrame(predictions).round(3)
111
 
112
 
113
 
 
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