File size: 4,253 Bytes
80b0c72
1dfabc1
80b0c72
 
8e27a89
80b0c72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1dfabc1
 
 
d48a77a
 
 
 
 
80b0c72
 
 
d48a77a
80b0c72
d48a77a
af0cb82
80b0c72
d48a77a
 
80b0c72
8e27a89
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
80b0c72
 
 
8e27a89
 
 
 
 
 
 
 
80b0c72
af0cb82
8e27a89
 
 
80b0c72
8e27a89
80b0c72
 
af0cb82
80b0c72
 
af0cb82
 
 
 
 
3c659c0
af0cb82
80b0c72
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107

# @title cwsd20 code
import json
import datasets
import os

_CITATION = """\
@misc{loureiro2021analysis,
      title={Analysis and Evaluation of Language Models for Word Sense Disambiguation}, 
      author={Daniel Loureiro and Kiamehr Rezaee and Mohammad Taher Pilehvar and Jose Camacho-Collados},
      year={2021},
      eprint={2008.11608},
      archivePrefix={arXiv},
      primaryClass={cs.CL}
}
"""

_DESCRIPTION = """\
The CoarseWSD-20 dataset is a coarse-grained sense disambiguation built from Wikipedia 
(nouns only) targetting 2 to 5 senses of 20 ambiguous words. It was specifically designed 
to provide an ideal setting for evaluating WSD models (e.g. no senses in test sets missing 
from training), both quantitavely and qualitatively.
"""

path = "data/apple/train.data.txt"


_WORDS = ["apple", "arm", "bank", "bass",
         "bow", "chair", "club", "crane",
         "deck", "digit", "hood", "java",
         "mole", "pitcher", "pound", "seal",
         "spring", "square", "trunk", "yard"]


class CWSD20(datasets.GeneratorBasedBuilder):
    """TODO: Short description of my dataset."""

    # TODO: Set up version.
    VERSION = datasets.Version("1.0.0")

    BUILDER_CONFIGS = [datasets.BuilderConfig(name=word, description=_DESCRIPTION) for word in _WORDS]

    def _info(self):
      with open(os.path.join("data", self.config.name, "classes_map.txt")) as cmap_f:
        cmap = json.load(cmap_f)
      label_classes = [cmap[str(k)] for k in range(len(cmap))]
      
      # Specifies the datasets.DatasetInfo object
      return datasets.DatasetInfo(
          # This is the description that will appear on the datasets page.
          description=_DESCRIPTION,
          # datasets.features.FeatureConnectors
          features=datasets.Features(
              {
                  "idx": datasets.Value("int32"),
                  "sentence": datasets.Value("string"),
                  "label": datasets.features.ClassLabel(names=label_classes)
                  # datasets.features.ClassLabel(names=self.config.label_classes)
                  # "label":  datasets.Value("int32")
                  # "idx": datasets.Value("int32"),
                  # "word": datasets.Value("string"),
                  # "start1": datasets.Value("int32"),
                  # "start2": datasets.Value("int32"),
                  # "end1": datasets.Value("int32"),
                  # "end2": datasets.Value("int32"),
                  # "label": datasets.Value("int32")
              }
          ),
          # If there's a common (input, target) tuple from the features,
          # specify them here. They'll be used if as_supervised=True in
          # builder.as_dataset.
          supervised_keys=None,
          # Homepage of the dataset for documentation
          homepage="https://github.com/google-research-datasets/boolean-questions",
          citation=_CITATION,
      )

    def _split_generators(self, dl_manager):
        """Returns SplitGenerators."""
        train_ex_path = os.path.join("data", self.config.name,
                                     "train.data.txt")
        test_ex_path = os.path.join("data", self.config.name,
                                     "test.data.txt")
        train_lb_path = os.path.join("data", self.config.name,
                                     "train.gold.txt")
        test_lb_path = os.path.join("data", self.config.name,
                                     "test.gold.txt")

        return [datasets.SplitGenerator(name=datasets.Split.TRAIN, 
                gen_kwargs={"ex": train_ex_path, "lb":train_lb_path }),
                datasets.SplitGenerator(name=datasets.Split.TEST, 
                gen_kwargs={"ex": test_ex_path, "lb":test_lb_path })]

    def _generate_examples(self, ex, lb):
      """Yields examples."""
      with open(ex, encoding="utf-8") as exf:
          for id_, exi in enumerate(exf):
            example = {}
            # 'word', 'sentence1', 'sentence2', 'start1', 'start2', 'end1', 'end2', 'idx', 'label'
            parts = exi.split("\t")
            idx = parts[0]
            sent = parts[1]
            example["sentence"] = sent
            example["idx"] = idx
            example["label"] = 0
            
            yield id_, example