zhuohan-7 commited on
Commit
c7ff547
·
verified ·
1 Parent(s): dc83d99

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. app/draw_diagram.py +7 -4
  2. app/pages.py +5 -1
app/draw_diagram.py CHANGED
@@ -289,10 +289,13 @@ def draw_only_acc(folder_name, category_one, category_two, sorted):
289
  category_two_dict = {}
290
 
291
  if folder_name == 'cultural_reasoning':
292
- category_two_dict = {'SG EVAL': 'sg_eval',
293
- 'US EVAL': 'us_eval',
294
- 'CN EVAL': 'cn_eval',
295
- 'PH EVAL': 'ph_eval'}
 
 
 
296
  elif folder_name == 'general_reasoning':
297
  category_two_dict = {'MMLU': 'mmlu',
298
  'C Eval': 'c_eval',
 
289
  category_two_dict = {}
290
 
291
  if folder_name == 'cultural_reasoning':
292
+ category_two_dict = {'SG EVAL': 'sg_eval',
293
+ 'SG EVAL V1 Cleaned': 'sg_eval_v1_cleaned',
294
+ 'SG EVAL V2 MCQ': 'sg_eval_v2_mcq',
295
+ 'SG EVAL V2 Open Ended': 'sg_eval_v2_open',
296
+ 'US EVAL': 'us_eval',
297
+ 'CN EVAL': 'cn_eval',
298
+ 'PH EVAL': 'ph_eval'}
299
  elif folder_name == 'general_reasoning':
300
  category_two_dict = {'MMLU': 'mmlu',
301
  'C Eval': 'c_eval',
app/pages.py CHANGED
@@ -104,7 +104,11 @@ def cultural_reasoning():
104
  st.title("Cultural Reasoning")
105
 
106
  filters_levelone = ['Zero Shot', 'Few Shot']
107
- filters_leveltwo = ['SG EVAL', 'CN EVAL', 'PH EVAL', 'US EVAL']
 
 
 
 
108
 
109
  category_one_dict = {'Zero Shot': 'zero_shot',
110
  'Few Shot': 'few_shot'}
 
104
  st.title("Cultural Reasoning")
105
 
106
  filters_levelone = ['Zero Shot', 'Few Shot']
107
+ filters_leveltwo = ['SG EVAL',
108
+ 'SG EVAL V1 Cleaned',
109
+ 'SG EVAL V2 MCQ',
110
+ 'SG EVAL V2 Open Ended',
111
+ 'CN EVAL', 'PH EVAL', 'US EVAL']
112
 
113
  category_one_dict = {'Zero Shot': 'zero_shot',
114
  'Few Shot': 'few_shot'}