Datasets:
File size: 2,737 Bytes
06140ff b4872b0 06140ff e87bd10 06140ff |
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 |
# dadrah_dataset.json
# persian-conversational-dataset
"""TODO(empathetic_dialogues): Add a description here."""
import csv
import datasets
_DESCRIPTION = """\
persian-conversational-dataset
"""
_URL = "https://dl.fbaipublicfiles.com/parlai/empatheticdialogues/empatheticdialogues.tar.gz"
class persianConversation(datasets.GeneratorBasedBuilder):
VERSION = datasets.Version("0.1.0")
def _info(self):
# TODO(empathetic_dialogues): 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(
{
"title": datasets.Value("string"),
"question": datasets.Value("string"),
"answers": datasets.Value("list"),
"keywords": datasets.Value("list"),
# These are the features of your dataset like images, labels ...
}
),
# 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
)
def _split_generators(self, dl_manager):
"""Returns SplitGenerators."""
# TODO(empathetic_dialogues): Downloads the data and defines the splits
# dl_manager is a datasets.download.DownloadManager that can be used to
# download and extract URLs
return [
datasets.SplitGenerator(
name=datasets.Split.TEST,
# These kwargs will be passed to _generate_examples
gen_kwargs={"files": ["dadrah_dataset.json"], "split_file": "dadrah_dataset.json"},
),
]
def _generate_examples(self, files, split_file):
"""Yields examples."""
for path, f in files:
if split_file == path:
with open(split_file, 'r', encoding='utf-8') as fmm:
data=json.load(fmm)
for id_, row in enumerate(data):
title=row[0]
question=row[1]
answers=row[2]
keywords=row[3]
if id_==20:
break;
yield id_, {
"title": title,
"question": question,
"answers": answers,
"keywords": keywords,
}
break |