Spaces:
Running
Running
Update utils.py
Browse files
utils.py
CHANGED
@@ -74,6 +74,7 @@ def get_df():
|
|
74 |
repo.git_pull()
|
75 |
df = pd.read_csv(CSV_DIR)
|
76 |
df['Avg'] = df[['TheoremQA', 'MATH', 'GSM']].mean(axis=1).round(1)
|
|
|
77 |
return df[COLUMN_NAMES]
|
78 |
|
79 |
def add_new_eval(
|
|
|
74 |
repo.git_pull()
|
75 |
df = pd.read_csv(CSV_DIR)
|
76 |
df['Avg'] = df[['TheoremQA', 'MATH', 'GSM']].mean(axis=1).round(1)
|
77 |
+
df = df.sort_values(by=['Avg'])
|
78 |
return df[COLUMN_NAMES]
|
79 |
|
80 |
def add_new_eval(
|