Spaces:
Running
Running
asd
Browse files
app.py
CHANGED
|
@@ -79,8 +79,8 @@ with demo:
|
|
| 79 |
# change value of column to nan
|
| 80 |
leaderboard_df["Benchmark Score"] = leaderboard_df["Benchmark Score"].replace('FAILED', numpy.nan)
|
| 81 |
|
| 82 |
-
#scale Benchmark Score by Num Questions Parseable*
|
| 83 |
-
leaderboard_df["Benchmark Score"] = leaderboard_df["Benchmark Score"].astype(float) * ((leaderboard_df["Num Questions Parseable"].astype(float) /
|
| 84 |
|
| 85 |
# set datatype of column
|
| 86 |
leaderboard_df["Benchmark Score"] = leaderboard_df["Benchmark Score"].astype(float)
|
|
|
|
| 79 |
# change value of column to nan
|
| 80 |
leaderboard_df["Benchmark Score"] = leaderboard_df["Benchmark Score"].replace('FAILED', numpy.nan)
|
| 81 |
|
| 82 |
+
#scale Benchmark Score by Num Questions Parseable*100
|
| 83 |
+
leaderboard_df["Benchmark Score"] = leaderboard_df["Benchmark Score"].astype(float) * ((leaderboard_df["Num Questions Parseable"].astype(float) / 100))
|
| 84 |
|
| 85 |
# set datatype of column
|
| 86 |
leaderboard_df["Benchmark Score"] = leaderboard_df["Benchmark Score"].astype(float)
|