CoarseWSD-20 / CoarseWSD-20.py
kiamehr74's picture
some changes
3c659c0
raw
history blame
No virus
4.25 kB
# @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