Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update src/populate.py
Browse files- src/populate.py +3 -0
src/populate.py
CHANGED
@@ -41,6 +41,9 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
|
|
41 |
print("\nSample data:")
|
42 |
print(df.head())
|
43 |
print(f"\nTotal rows: {len(df)}")
|
|
|
|
|
|
|
44 |
return df
|
45 |
|
46 |
|
|
|
41 |
print("\nSample data:")
|
42 |
print(df.head())
|
43 |
print(f"\nTotal rows: {len(df)}")
|
44 |
+
print(f"\nColumn dtypes:")
|
45 |
+
print(df.dtypes)
|
46 |
+
|
47 |
return df
|
48 |
|
49 |
|