Yuanxh commited on
Commit
54d8398
·
1 Parent(s): 10be7ea

Update leaderboard

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -44,9 +44,8 @@ def wrap_model(func):
44
  def wrapper(*args, **kwargs):
45
  df = func(*args, **kwargs)
46
  df["Model"] = df["Model"].apply(lambda x: ref_dic[x])
47
- cols_to_round = df.select_dtypes(include=[np.number]).columns.difference(
48
- ["Model"]
49
- ).tolist()
50
  df[cols_to_round] = df[cols_to_round].apply(lambda x: np.round(x, 2))
51
  return df
52
 
 
44
  def wrapper(*args, **kwargs):
45
  df = func(*args, **kwargs)
46
  df["Model"] = df["Model"].apply(lambda x: ref_dic[x])
47
+ cols_to_round = df.select_dtypes(include=[np.number]).columns.tolist()
48
+ cols_to_round = [col for col in cols_to_round if col != "Model"]
 
49
  df[cols_to_round] = df[cols_to_round].apply(lambda x: np.round(x, 2))
50
  return df
51