Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
- src/populate.py +3 -1
src/populate.py
CHANGED
@@ -17,7 +17,9 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
17 |
df = df[cols].round(decimals=2)
|
18 |
|
19 |
# filter out if any of the benchmarks have not been produced
|
20 |
-
|
|
|
|
|
21 |
return raw_data, df
|
22 |
|
23 |
|
|
|
17 |
df = df[cols].round(decimals=2)
|
18 |
|
19 |
# filter out if any of the benchmarks have not been produced
|
20 |
+
print('X1', df)
|
21 |
+
df2 = df[has_no_nan_values(df, benchmark_cols)]
|
22 |
+
print('X2', df2)
|
23 |
return raw_data, df
|
24 |
|
25 |
|