File size: 1,562 Bytes
aa96165 76e8a25 aa96165 |
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 |
"""Yandex.Q questions and answers dataset"""
import json
import gzip
import datasets
_DESCRIPTION = """\
This is a dataset of questions and answers scraped from Yandex.Q.
"""
_HOMEPAGE = "https://huggingface.co/datasets/its5Q/yandex-q"
_LICENSE = "cc0-1.0"
_URLS = [
"https://huggingface.co/datasets/its5Q/yandex-q/resolve/main/answers.jsonl.gz"
]
class YandexQ(datasets.GeneratorBasedBuilder):
VERSION = datasets.Version("0.1.0")
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=datasets.Features(
{
"description": datasets.Value("string"),
"question": datasets.Value("string"),
"answer": datasets.Value("string")
}
),
homepage=_HOMEPAGE,
license=_LICENSE
)
def _split_generators(self, dl_manager):
data_dir = dl_manager.download_and_extract(_URLS)
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
gen_kwargs={
"filepath": data_dir[0],
"split": "train",
},
)
]
def _generate_examples(self, filepath, split):
with gzip.open(filepath, mode='rt', encoding="utf-8") as f:
for i, line in enumerate(f):
data = json.loads(line)
if data['description'] is None:
data['description'] = ''
yield i, data
|