Update space
Browse files- app.py +1 -1
- src/populate.py +1 -0
app.py
CHANGED
@@ -184,7 +184,7 @@ with demo:
|
|
184 |
DESCRIPTION_TEXT="""
|
185 |
Algebra, Geometry, and Probability are the current three main math domains in the leaderboard.
|
186 |
To mitigate the potential impact of data contimination, we have carefully selected the datasets from various sources.
|
187 |
-
We prioritize recent math datasets and focus on college and beyond level math questions.
|
188 |
The current datasets include
|
189 |
[MATH](https://arxiv.org/abs/2103.03874),
|
190 |
[MATH-500](https://github.com/openai/prm800k/tree/main/prm800k/math_splits),
|
|
|
184 |
DESCRIPTION_TEXT="""
|
185 |
Algebra, Geometry, and Probability are the current three main math domains in the leaderboard.
|
186 |
To mitigate the potential impact of data contimination, we have carefully selected the datasets from various sources.
|
187 |
+
We prioritize **recent math datasets** and focus on **college and beyond level** math questions.
|
188 |
The current datasets include
|
189 |
[MATH](https://arxiv.org/abs/2103.03874),
|
190 |
[MATH-500](https://github.com/openai/prm800k/tree/main/prm800k/math_splits),
|
src/populate.py
CHANGED
@@ -31,6 +31,7 @@ def get_model_leaderboard_df(results_path: str, requests_path: str="", cols: lis
|
|
31 |
df = df.fillna('--')
|
32 |
rank = np.arange(1, len(df)+1)
|
33 |
df.insert(0, 'Rank', rank)
|
|
|
34 |
|
35 |
for col in benchmark_cols:
|
36 |
# print(col)
|
|
|
31 |
df = df.fillna('--')
|
32 |
rank = np.arange(1, len(df)+1)
|
33 |
df.insert(0, 'Rank', rank)
|
34 |
+
|
35 |
|
36 |
for col in benchmark_cols:
|
37 |
# print(col)
|