zhuohan-7 commited on
Commit
3a519c9
1 Parent(s): 0c8dd31

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. app/pages.py +9 -2
app/pages.py CHANGED
@@ -172,19 +172,26 @@ def general_reasoning():
172
  filters_levelone = ['Zero Shot', 'Few Shot']
173
  filters_leveltwo = [
174
  'MMLU',
 
175
  'CMMLU',
176
  'IndoMMLU',
 
177
  'C Eval',
178
  'ZBench',
179
  ]
180
 
181
  category_one_dict = {'Zero Shot': 'zero_shot',
182
  'Few Shot': 'few_shot'}
183
- category_two_dict = {'MMLU': 'mmlu',
 
 
 
184
  'C Eval': 'c_eval',
185
  'CMMLU': 'cmmlu',
186
  'ZBench': 'zbench',
187
- 'IndoMMLU': 'indommlu'}
 
 
188
 
189
  left, center, middle, _, right = st.columns([0.2, 0.2, 0.2, 0.2 ,0.2])
190
  with left:
 
172
  filters_levelone = ['Zero Shot', 'Few Shot']
173
  filters_leveltwo = [
174
  'MMLU',
175
+ 'MMLU-No-Prompt',
176
  'CMMLU',
177
  'IndoMMLU',
178
+ 'IndoMMLU-No-Prompt',
179
  'C Eval',
180
  'ZBench',
181
  ]
182
 
183
  category_one_dict = {'Zero Shot': 'zero_shot',
184
  'Few Shot': 'few_shot'}
185
+
186
+ category_two_dict = {
187
+ 'MMLU': 'mmlu',
188
+ 'MMLU No Prompt': 'mmlu_no_prompt',
189
  'C Eval': 'c_eval',
190
  'CMMLU': 'cmmlu',
191
  'ZBench': 'zbench',
192
+ 'IndoMMLU': 'indommlu',
193
+ 'IndoMMLU No Prompt': 'indommlu_no_prompt',
194
+ }
195
 
196
  left, center, middle, _, right = st.columns([0.2, 0.2, 0.2, 0.2 ,0.2])
197
  with left: