Spaces:
Sleeping
Sleeping
[Update]
Browse files
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='
|
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 |
|