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