File size: 1,973 Bytes
47620ab
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
927f55d
870860d
27570d7
 
 
 
927f55d
 
47620ab
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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

import os

import datasets
import json


_CITATION = """\
"""

_DESCRIPTION = """\
    CSAT-QA
"""

_HOMEPAGE = "https://huggingface.co/HAERAE-HUB"

_LICENSE = "Proprietary"

split_names = ["WR", "GR", "RCS", "RCSS", "RCH", "LI"]

class CSATQAConfig(datasets.BuilderConfig):
    def __init__(self, **kwargs):
        super().__init__(version=datasets.Version("1.0.0"), **kwargs)


class CSATQA(datasets.GeneratorBasedBuilder):
    BUILDER_CONFIGS = [
        CSATQAConfig(
            name=name,
        )
        for name in split_names
    ]

    def _info(self):
        features = datasets.Features(
            {
                "question": datasets.Value("string"),
                "option#1": datasets.Value("string"),
                "option#2": datasets.Value("string"),
                "option#3": datasets.Value("string"),
                "option#4": datasets.Value("string"),
                "option#5": datasets.Value("string"),
                "gold": datasets.Value("int8"),
            }
        )
        return datasets.DatasetInfo(
            description=_DESCRIPTION,
            features=features,
            homepage=_HOMEPAGE,
            license=_LICENSE,
            citation=_CITATION,
        )

    def _split_generators(self, dl_manager):
        return [
                datasets.SplitGenerator(
                name=datasets.Split.TRAIN,
                # These kwargs will be passed to _generate_examples
                gen_kwargs={
                    "filepath": os.path.join("data.jsonl"),
                    "split": "train",
                },
            ),
        ]

    def _generate_examples(self, filepath):
        with open(filepath, encoding="utf-8") as f:
            for key, row in enumerate(f):
                data = json.loads(row)
                if data["split"] == self.config.name:
                    data["gold"] = int(data["gold"]) - 1
                    data.pop("split")
                    yield key, data