lukecq commited on
Commit
011e313
·
1 Parent(s): d0bceed

update scripts

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -38,7 +38,7 @@ def load_data(data_path):
38
  df = pd.read_csv(data_path, skiprows=1, header=0).dropna()
39
 
40
  columns = ['Model', 'type', 'open?', 'shot', 'en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']
41
- columns_sorted = ['Model', 'type', 'open?', 'shot', 'avg', 'avg_sea', 'en', 'zh', 'id', 'th', 'vi']
42
 
43
  # Splitting into three separate DataFrames based on the groups M3Exam and MMLU and average
44
  df_m3exam = df.iloc[:, :11] # M3Exam columns
@@ -51,9 +51,10 @@ def load_data(data_path):
51
  for df_tmp in [df_m3exam, df_mmlu, df_avg]:
52
  df_tmp[['en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']] *= 100
53
  df_tmp[['en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']] = df_tmp[['en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']].round(2)
54
-
55
  # change the order of the columns to ['Model', 'type', 'open?', 'shot', 'avg', 'avg_sea', 'en', 'zh', 'id', 'th', 'vi']
56
  # and sort the columns by 'avg' in descending order
 
57
  df_m3exam = df_m3exam[columns_sorted].sort_values(by='avg', ascending=False)
58
  df_mmlu = df_mmlu[columns_sorted].sort_values(by='avg', ascending=False)
59
  df_avg = df_avg[columns_sorted].sort_values(by='avg', ascending=False)
 
38
  df = pd.read_csv(data_path, skiprows=1, header=0).dropna()
39
 
40
  columns = ['Model', 'type', 'open?', 'shot', 'en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']
41
+
42
 
43
  # Splitting into three separate DataFrames based on the groups M3Exam and MMLU and average
44
  df_m3exam = df.iloc[:, :11] # M3Exam columns
 
51
  for df_tmp in [df_m3exam, df_mmlu, df_avg]:
52
  df_tmp[['en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']] *= 100
53
  df_tmp[['en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']] = df_tmp[['en', 'zh', 'id', 'th', 'vi', 'avg', 'avg_sea']].round(2)
54
+ df_tmp['rank'] = df_tmp['avg'].rank(ascending=False).astype(int)
55
  # change the order of the columns to ['Model', 'type', 'open?', 'shot', 'avg', 'avg_sea', 'en', 'zh', 'id', 'th', 'vi']
56
  # and sort the columns by 'avg' in descending order
57
+ columns_sorted = ['rank','Model', 'type', 'open?', 'shot', 'avg', 'avg_sea', 'en', 'zh', 'id', 'th', 'vi']
58
  df_m3exam = df_m3exam[columns_sorted].sort_values(by='avg', ascending=False)
59
  df_mmlu = df_mmlu[columns_sorted].sort_values(by='avg', ascending=False)
60
  df_avg = df_avg[columns_sorted].sort_values(by='avg', ascending=False)