|
""" |
|
Modified from https://huggingface.co/datasets/khalidalt/tydiqa-goldp/blob/main/tydiqa-goldp.py |
|
""" |
|
|
|
from typing import List |
|
|
|
import json |
|
import textwrap |
|
|
|
import datasets |
|
from datasets.tasks import QuestionAnsweringExtractive |
|
|
|
|
|
_CITATION = """\ |
|
@article{tydiqa, |
|
title = {TyDi QA: A Benchmark for Information-Seeking Question Answering in Typologically Diverse Languages}, |
|
author = {Jonathan H. Clark and Eunsol Choi and Michael Collins and Dan Garrette and Tom Kwiatkowski and Vitaly Nikolaev and Jennimaria Palomaki} |
|
year = {2020}, |
|
journal = {Transactions of the Association for Computational Linguistics} |
|
} |
|
""" |
|
|
|
|
|
_DESCRIPTION = """\ |
|
TyDi QA is a question answering dataset covering 11 typologically diverse languages with 204K question-answer pairs. |
|
The languages of TyDi QA are diverse with regard to their typology -- the set of linguistic features that each language |
|
expresses -- such that we expect models performing well on this set to generalize across a large number of the languages |
|
in the world. It contains language phenomena that would not be found in English-only corpora. To provide a realistic |
|
information-seeking task and avoid priming effects, questions are written by people who want to know the answer, but |
|
don’t know the answer yet, (unlike SQuAD and its descendents) and the data is collected directly in each language without |
|
the use of translation (unlike MLQA and XQuAD). |
|
""" |
|
|
|
|
|
_URL = "https://huggingface.co/datasets/chompk/tydiqa-goldp-th/resolve/main/xtreme/tydiqa.goldp.th.{split}.json" |
|
_VERSION = datasets.Version("1.1.0", "") |
|
|
|
|
|
class tydiqa_GoldP_th(datasets.GeneratorBasedBuilder): |
|
BUILDER_CONFIGS = [ |
|
datasets.BuilderConfig( |
|
name="th", |
|
description=f"tydiqa-GoldP TH", |
|
version=_VERSION, |
|
) |
|
] |
|
|
|
def _info(self): |
|
return datasets.DatasetInfo( |
|
description=_DESCRIPTION, |
|
features=datasets.Features( |
|
{ |
|
"id": datasets.Value("string"), |
|
"context": datasets.Value("string"), |
|
"question": datasets.Value("string"), |
|
"answers": datasets.features.Sequence( |
|
{"text": datasets.Value("string"), "answer_start": datasets.Value("int32"),} |
|
), |
|
} |
|
), |
|
|
|
|
|
supervised_keys=None, |
|
homepage="https://github.com/google-research-datasets/tydiqa", |
|
citation=_CITATION, |
|
) |
|
|
|
def _split_generators(self, dl_manager: datasets.DownloadManager) -> List[datasets.SplitGenerator]: |
|
downloaded_files = dl_manager.download([f"data/shard_{i}.jsonl" for i in range(1024)]) |
|
return [ |
|
datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepaths": downloaded_files}), |
|
] |
|
|
|
def _split_generators(self, dl_manager): |
|
"""Returns SplitGenerators.""" |
|
|
|
|
|
|
|
splits = {datasets.Split.TRAIN: "train", datasets.Split.VALIDATION: "dev"} |
|
|
|
data_urls = { |
|
split: _URL.format(split=splits[split]) for split in splits |
|
} |
|
|
|
dl_paths = dl_manager.download(data_urls) |
|
return [ |
|
datasets.SplitGenerator( |
|
name=split, |
|
gen_kwargs={"filepath": dl_paths[split]}, |
|
) |
|
for split in splits |
|
] |
|
|
|
def _generate_examples(self, filepath): |
|
"""This function returns the examples in the raw (text) form.""" |
|
with open(filepath) as f: |
|
squad = json.load(f) |
|
for article in squad["data"]: |
|
for paragraph in article["paragraphs"]: |
|
context = paragraph["context"] |
|
for qa in paragraph["qas"]: |
|
question = qa["question"] |
|
id_ = qa["id"] |
|
|
|
answer_starts = [answer["answer_start"] for answer in qa["answers"]] |
|
answers = [answer["text"].strip() for answer in qa["answers"]] |
|
|
|
|
|
|
|
yield id_, { |
|
"context": context, |
|
"question": question, |
|
"id": id_, |
|
"answers": {"answer_start": answer_starts, "text": answers,}, |
|
} |
|
|