| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| """Topic-aware multi-turn dialogue modeling""" |
|
|
|
|
| import json |
|
|
| import datasets |
|
|
|
|
| _CITATION = """\ |
| @article{xu2020topic, |
| title={Topic-aware multi-turn dialogue modeling}, |
| author={Xu, Yi and Zhao, Hai and Zhang, Zhuosheng}, |
| journal={arXiv preprint arXiv:2009.12539}, |
| year={2020} |
| } |
| """ |
|
|
| _DESCRIPTION = """\ |
| """ |
|
|
|
|
| _HOMEPAGE = "https://github.com/xyease/TADAM" |
|
|
| _LICENSE = """\ |
| """ |
| |
| |
| |
| _URLs = { |
| "test": "https://huggingface.co/datasets/Coldog2333/dialseg711/resolve/main/test.json", |
| } |
|
|
|
|
| class Dialseg711Config(datasets.BuilderConfig): |
| """BuilderConfig for Dialseg711""" |
|
|
| def __init__(self, **kwargs): |
| """ |
| Args: |
| **kwargs: keyword arguments forwarded to super. |
| """ |
| super().__init__(version=datasets.Version("1.0.0", ""), **kwargs) |
| self.dataset_name = "dialseg711" |
|
|
|
|
| class Dialseg711(datasets.GeneratorBasedBuilder): |
| """Topic-aware multi-turn dialogue modeling""" |
|
|
| VERSION = datasets.Version("1.0.0") |
|
|
| def _info(self): |
| return datasets.DatasetInfo( |
| description=_DESCRIPTION, |
| features=datasets.Features( |
| { |
| "dial_id": datasets.Value("string"), |
| "utterance": datasets.features.Sequence(datasets.Value("string")), |
| "segmentation_label": datasets.features.Sequence(datasets.Value("int32")), |
| "da": datasets.features.Sequence(datasets.Value("string")), |
| "role": datasets.features.Sequence(datasets.Value("string")), |
| "turn_id": datasets.features.Sequence(datasets.Value("int32")), |
| "topic_id": datasets.features.Sequence(datasets.Value("int32")) |
| } |
| ), |
| supervised_keys=None, |
| homepage=_HOMEPAGE, |
| license=_LICENSE, |
| citation=_CITATION, |
| ) |
|
|
| def _split_generators(self, dl_manager): |
| """Returns SplitGenerators.""" |
| downloaded_files = dl_manager.download_and_extract(_URLs) |
| return [ |
| datasets.SplitGenerator( |
| name=datasets.Split.TEST, gen_kwargs={"filepath": downloaded_files["test"]} |
| ) |
| ] |
|
|
| def _generate_examples(self, filepath): |
| """Yields examples.""" |
| with open(filepath, encoding="utf-8") as f: |
| data = json.load(f)["dial_data"][self.dataset_name] |
| for id_, row in enumerate(data): |
| yield id_, { |
| "dial_id": row["dial_id"], |
| "utterance": [turn["utterance"] for turn in row["turns"]], |
| "segmentation_label": [turn["segmentation_label"] for turn in row["turns"]], |
| "da": [turn["da"] for turn in row["turns"]], |
| "role": [turn["role"] for turn in row["turns"]], |
| "turn_id": [turn["turn_id"] for turn in row["turns"]], |
| "topic_id": [turn["topic_id"] for turn in row["turns"]] |
| } |
|
|