mirageco commited on
Commit
71249e1
1 Parent(s): 8b37d0c

Fix FinTrade Normalization

Browse files
Files changed (1) hide show
  1. src/populate.py +1 -1
src/populate.py CHANGED
@@ -40,7 +40,7 @@ def get_leaderboard_df(results_path: str, requests_path: str, cols: list, benchm
40
 
41
  for index, row in df.iterrows():
42
  if "FinTrade" in row and row["FinTrade"] != "missing":
43
- df.loc[index, "FinTrade"] = (row["FinTrade"] + 3) / 6
44
 
45
  # Now, select the columns that were passed to the function
46
  df = df[cols]
 
40
 
41
  for index, row in df.iterrows():
42
  if "FinTrade" in row and row["FinTrade"] != "missing":
43
+ df.loc[index, "FinTrade"] = (row["FinTrade"] + 300) / 6
44
 
45
  # Now, select the columns that were passed to the function
46
  df = df[cols]