Spaces:
Runtime error
Runtime error
add rounding
Browse files- 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 |
-
|
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 |
|