alozowski HF Staff commited on
Commit
a947db0
·
1 Parent(s): 6f0c9ff

Add new stage to utils.py

Browse files
Files changed (1) hide show
  1. yourbench_space/utils.py +2 -0
yourbench_space/utils.py CHANGED
@@ -23,6 +23,7 @@ STAGES = [
23
  "single_shot_question_generation",
24
  "multi_hop_question_generation",
25
  "lighteval",
 
26
  ]
27
 
28
  STAGE_DISPLAY_MAP = {
@@ -33,6 +34,7 @@ STAGE_DISPLAY_MAP = {
33
  "single_shot_question_generation": "Generate Single Shot Questions",
34
  "multi_hop_question_generation": "Generate Multi Hop Questions",
35
  "lighteval": "Generate Lighteval Subset",
 
36
  }
37
 
38
 
 
23
  "single_shot_question_generation",
24
  "multi_hop_question_generation",
25
  "lighteval",
26
+ "citation_score_filtering",
27
  ]
28
 
29
  STAGE_DISPLAY_MAP = {
 
34
  "single_shot_question_generation": "Generate Single Shot Questions",
35
  "multi_hop_question_generation": "Generate Multi Hop Questions",
36
  "lighteval": "Generate Lighteval Subset",
37
+ "citation_score_filtering": "Citation Score Filtering"
38
  }
39
 
40