arc.py 1.18 KB
Newer Older
1
from lm_eval.base import MultipleChoiceTask
2
from . common import HFTask
Leo Gao's avatar
Leo Gao committed
3

Jonathan Tow's avatar
Jonathan Tow committed
4

5
class ARCEasy(HFTask, MultipleChoiceTask):
Leo Gao's avatar
Leo Gao committed
6
    VERSION = 0
Leo Gao's avatar
Leo Gao committed
7
8
    DATASET_PATH = "ai2_arc"
    DATASET_NAME = "ARC-Easy"
Leo Gao's avatar
Leo Gao committed
9
10
11
12
13
14
15
16
17
18

    def has_training_docs(self):
        return True

    def has_validation_docs(self):
        return True

    def has_test_docs(self):
        return True

19
20
21
22
23
24
25
26
27
28
29
30
    def _convert_standard(self, doc):
        # NOTE: Some `doc["answerKey"]`s are in numeric string format being one
        # of {'1', '2', '3', '4', '5'}. We map them back to letters.
        num_to_letter = {"1": "A", "2": "B", "3": "C", "4": "D", "5": "E"}
        doc["answerKey"] = num_to_letter.get(doc["answerKey"], doc["answerKey"])
        out_doc = {
            "id": doc["id"],
            "query": "Question: " + doc["question"] + "\nAnswer:",
            "choices": doc["choices"]["text"],
            "gold": ["A", "B", "C", "D", "E"].index(doc["answerKey"]),
        }
        return out_doc
Leo Gao's avatar
Leo Gao committed
31

32
33
34
    def fewshot_description(self):
        # TODO: figure out description
        return ""
Leo Gao's avatar
Leo Gao committed
35

36
37
    def doc_to_text(self, doc):
        return doc["query"]
Jonathan Tow's avatar
Jonathan Tow committed
38

Leo Gao's avatar
Leo Gao committed
39
40

class ARCChallenge(ARCEasy):
Leo Gao's avatar
Leo Gao committed
41
    DATASET_PATH = "ai2_arc"
Leo Gao's avatar
Leo Gao committed
42
    DATASET_NAME = "ARC-Challenge"