Spaces:
Sleeping
Sleeping
Jimin Huang
commited on
Commit
·
6016078
1
Parent(s):
1dd9b0f
fix: alter column name
Browse files
backend/app/services/leaderboard.py
CHANGED
|
@@ -112,7 +112,6 @@ class LeaderboardService:
|
|
| 112 |
"normalized_score": data.get("MultiFin", 0)
|
| 113 |
},
|
| 114 |
}
|
| 115 |
-
print (evaluations)
|
| 116 |
|
| 117 |
features = {
|
| 118 |
"is_not_available_on_hub": data.get("Available on the hub", False),
|
|
|
|
| 112 |
"normalized_score": data.get("MultiFin", 0)
|
| 113 |
},
|
| 114 |
}
|
|
|
|
| 115 |
|
| 116 |
features = {
|
| 117 |
"is_not_available_on_hub": data.get("Available on the hub", False),
|
frontend/src/pages/LeaderboardPage/components/Leaderboard/utils/columnUtils.js
CHANGED
|
@@ -749,6 +749,8 @@ export const createColumns = (
|
|
| 749 |
);
|
| 750 |
};
|
| 751 |
|
|
|
|
|
|
|
| 752 |
const evaluationColumns = [
|
| 753 |
{
|
| 754 |
accessorKey: "evaluations.multifin.normalized_score",
|
|
|
|
| 749 |
);
|
| 750 |
};
|
| 751 |
|
| 752 |
+
console.error(row);
|
| 753 |
+
|
| 754 |
const evaluationColumns = [
|
| 755 |
{
|
| 756 |
accessorKey: "evaluations.multifin.normalized_score",
|