_generate_configs.py 5.18 KB
Newer Older
1
"""
lintangsutawika's avatar
lintangsutawika committed
2
Take in a YAML, and output all "other" splits with this YAML
3
"""
4

5
import argparse
6
import logging
7
import os
8

9
import yaml
10
11
from tqdm import tqdm

12
13

eval_logger = logging.getLogger("lm-eval")
14

15

lintangsutawika's avatar
lintangsutawika committed
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
SUBJECTS = {
    "abstract_algebra": "stem",
    "anatomy": "stem",
    "astronomy": "stem",
    "business_ethics": "other",
    "clinical_knowledge": "other",
    "college_biology": "stem",
    "college_chemistry": "stem",
    "college_computer_science": "stem",
    "college_mathematics": "stem",
    "college_medicine": "other",
    "college_physics": "stem",
    "computer_security": "stem",
    "conceptual_physics": "stem",
    "econometrics": "social_sciences",
    "electrical_engineering": "stem",
    "elementary_mathematics": "stem",
    "formal_logic": "humanities",
    "global_facts": "other",
    "high_school_biology": "stem",
    "high_school_chemistry": "stem",
    "high_school_computer_science": "stem",
    "high_school_european_history": "humanities",
    "high_school_geography": "social_sciences",
    "high_school_government_and_politics": "social_sciences",
    "high_school_macroeconomics": "social_sciences",
    "high_school_mathematics": "stem",
    "high_school_microeconomics": "social_sciences",
    "high_school_physics": "stem",
    "high_school_psychology": "social_sciences",
    "high_school_statistics": "stem",
    "high_school_us_history": "humanities",
    "high_school_world_history": "humanities",
    "human_aging": "other",
    "human_sexuality": "social_sciences",
    "international_law": "humanities",
    "jurisprudence": "humanities",
    "logical_fallacies": "humanities",
    "machine_learning": "stem",
    "management": "other",
    "marketing": "other",
    "medical_genetics": "other",
    "miscellaneous": "other",
    "moral_disputes": "humanities",
    "moral_scenarios": "humanities",
    "nutrition": "other",
    "philosophy": "humanities",
    "prehistory": "humanities",
    "professional_accounting": "other",
    "professional_law": "humanities",
    "professional_medicine": "other",
    "professional_psychology": "social_sciences",
    "public_relations": "social_sciences",
    "security_studies": "social_sciences",
    "sociology": "social_sciences",
    "us_foreign_policy": "social_sciences",
    "virology": "other",
    "world_religions": "humanities",
}
75
76
77
78
79


def parse_args():
    parser = argparse.ArgumentParser()
    parser.add_argument("--base_yaml_path", required=True)
80
    parser.add_argument("--save_prefix_path", default="mmlu")
lintangsutawika's avatar
update  
lintangsutawika committed
81
    parser.add_argument("--cot_prompt_path", default=None)
lintangsutawika's avatar
lintangsutawika committed
82
    parser.add_argument("--task_prefix", default="")
lintangsutawika's avatar
lintangsutawika committed
83
    parser.add_argument("--group_prefix", default="")
84
85
86
87
88
89
    return parser.parse_args()


if __name__ == "__main__":
    args = parse_args()

lintangsutawika's avatar
lintangsutawika committed
90
    # get filename of base_yaml so we can `"include": ` it in our "other" YAMLs.
91
    base_yaml_name = os.path.split(args.base_yaml_path)[-1]
92
    with open(args.base_yaml_path, encoding="utf-8") as f:
93
94
        base_yaml = yaml.full_load(f)

lintangsutawika's avatar
lintangsutawika committed
95
96
    if args.cot_prompt_path is not None:
        import json
lintangsutawika's avatar
update  
lintangsutawika committed
97

98
        with open(args.cot_prompt_path, encoding="utf-8") as f:
lintangsutawika's avatar
lintangsutawika committed
99
100
            cot_file = json.load(f)

lintangsutawika's avatar
lintangsutawika committed
101
102
103
104
105
    ALL_CATEGORIES = []
    for subject, category in tqdm(SUBJECTS.items()):
        if category not in ALL_CATEGORIES:
            ALL_CATEGORIES.append(category)

lintangsutawika's avatar
lintangsutawika committed
106
107
108
109
        if args.cot_prompt_path is not None:
            description = cot_file[subject]
        else:
            description = f"The following are multiple choice questions (with answers) about {' '.join(subject.split('_'))}.\n\n"
110
111
112

        yaml_dict = {
            "include": base_yaml_name,
113
114
115
            "group": f"mmlu_{args.task_prefix}_{category}"
            if args.task_prefix != ""
            else f"mmlu_{category}",
lintangsutawika's avatar
lintangsutawika committed
116
            "group_alias": category.replace("_", " "),
lintangsutawika's avatar
update  
lintangsutawika committed
117
118
119
            "task": f"mmlu_{args.task_prefix}_{subject}"
            if args.task_prefix != ""
            else f"mmlu_{subject}",
lintangsutawika's avatar
lintangsutawika committed
120
            "task_alias": subject.replace("_", " "),
121
            "dataset_name": subject,
lintangsutawika's avatar
lintangsutawika committed
122
            "description": description,
123
124
        }

lintangsutawika's avatar
lintangsutawika committed
125
        file_save_path = args.save_prefix_path + f"_{subject}.yaml"
126
        eval_logger.info(f"Saving yaml for subset {subject} to {file_save_path}")
127
        with open(file_save_path, "w", encoding="utf-8") as yaml_file:
lintangsutawika's avatar
update  
lintangsutawika committed
128
129
130
131
132
133
            yaml.dump(
                yaml_dict,
                yaml_file,
                allow_unicode=True,
                default_style='"',
            )
lintangsutawika's avatar
lintangsutawika committed
134

135
136
137
138
139
140
141
142
143
    if args.task_prefix != "":
        mmlu_subcategories = [
            f"mmlu_{args.task_prefix}_{category}" for category in ALL_CATEGORIES
        ]
    else:
        mmlu_subcategories = [f"mmlu_{category}" for category in ALL_CATEGORIES]

    if args.group_prefix != "":
        file_save_path = args.group_prefix + ".yaml"
lintangsutawika's avatar
lintangsutawika committed
144
    else:
145
146
        file_save_path = args.save_prefix_path + ".yaml"

lintangsutawika's avatar
lintangsutawika committed
147
    eval_logger.info(f"Saving benchmark config to {file_save_path}")
148
    with open(file_save_path, "w", encoding="utf-8") as yaml_file:
lintangsutawika's avatar
lintangsutawika committed
149
150
        yaml.dump(
            {
151
152
153
154
                "group": f"mmlu_{args.task_prefix}"
                if args.task_prefix != ""
                else "mmlu",
                "task": mmlu_subcategories,
lintangsutawika's avatar
lintangsutawika committed
155
            },
lintangsutawika's avatar
lintangsutawika committed
156
            yaml_file,
157
            indent=4,
lintangsutawika's avatar
lintangsutawika committed
158
            default_flow_style=False,
lintangsutawika's avatar
lintangsutawika committed
159
        )