arc.py 1.58 KB
Newer Older
1
2
from lm_eval.base import MultipleChoiceTask
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
7
    DATASET_PATH = "ai2_arc"
    DATASET_NAME = "ARC-Easy"
Leo Gao's avatar
Leo Gao committed
8
9
10
11
12
13
14
15
16
17

    def has_training_docs(self):
        return True

    def has_validation_docs(self):
        return True

    def has_test_docs(self):
        return True

18
19
20
21
22
23
24
25
26
27
28
29
    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
30

31
32
33
    def _load_docs(self, docs):
        for record in docs:
            yield self._convert_standard(record)
Leo Gao's avatar
Leo Gao committed
34

35
36
37
    def training_docs(self):
        docs = super().training_docs()
        return self._load_docs(docs)
Jonathan Tow's avatar
Jonathan Tow committed
38

39
40
41
    def validation_docs(self):
        docs = super().validation_docs()
        return self._load_docs(docs)
Leo Gao's avatar
Leo Gao committed
42

43
44
45
    def test_docs(self):
        docs = super().test_docs()
        return self._load_docs(docs)
Leo Gao's avatar
Leo Gao committed
46

47
48
49
    def fewshot_description(self):
        # TODO: figure out description
        return ""
Leo Gao's avatar
Leo Gao committed
50

51
52
    def doc_to_text(self, doc):
        return doc["query"]
Jonathan Tow's avatar
Jonathan Tow committed
53

Leo Gao's avatar
Leo Gao committed
54
55

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