sh1gechan commited on
Commit
c6db7e0
·
verified ·
1 Parent(s): 3a4e28f

Update src/populate.py

Browse files
Files changed (1) hide show
  1. 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