xinchen9 commited on
Commit
9183423
·
verified ·
1 Parent(s): f24fa75
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -41,10 +41,10 @@ def load_data(data_path):
41
  df['Post-ASR'] = df['Post-ASR'].round(0)
42
 
43
  # rank according to the Score column
44
- df = df.sort_values(by='Score', ascending=False)
45
  # reorder the columns
46
  df = df[columns_sorted]
47
-
48
 
49
  return df
50
 
 
41
  df['Post-ASR'] = df['Post-ASR'].round(0)
42
 
43
  # rank according to the Score column
44
+ df = df.sort_values(by='Post-ASR', ascending=False)
45
  # reorder the columns
46
  df = df[columns_sorted]
47
+
48
 
49
  return df
50