File size: 6,888 Bytes
aae87bb 9b48962 aae87bb |
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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
# coding=utf-8
# Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Coached Conversational Preference Elicitation Dataset to Understanding Movie Preferences"""
import json
import os
import datasets
_CITATION = """\
@inproceedings{48414,
title = {Coached Conversational Preference Elicitation: A Case Study in Understanding Movie Preferences},
author = {Filip Radlinski and Krisztian Balog and Bill Byrne and Karthik Krishnamoorthi},
year = {2019},
booktitle = {Proceedings of the Annual SIGdial Meeting on Discourse and Dialogue}
}
"""
_DESCRIPTION = """\
A dataset consisting of 502 English dialogs with 12,000 annotated utterances between a user and an assistant discussing
movie preferences in natural language. It was collected using a Wizard-of-Oz methodology between two paid crowd-workers,
where one worker plays the role of an 'assistant', while the other plays the role of a 'user'. The 'assistant' elicits
the 'user’s' preferences about movies following a Coached Conversational Preference Elicitation (CCPE) method. The
assistant asks questions designed to minimize the bias in the terminology the 'user' employs to convey his or her
preferences as much as possible, and to obtain these preferences in natural language. Each dialog is annotated with
entity mentions, preferences expressed about entities, descriptions of entities provided, and other statements of
entities."""
_HOMEPAGE = "https://research.google/tools/datasets/coached-conversational-preference-elicitation/"
_LICENSE = "https://creativecommons.org/licenses/by-sa/4.0/"
_URLs = {"dataset": "https://storage.googleapis.com/dialog-data-corpus/CCPE-M-2019/data.json"}
class CoachedConvPrefConfig(datasets.BuilderConfig):
"""BuilderConfig for DialogRE"""
def __init__(self, **kwargs):
"""BuilderConfig for DialogRE.
Args:
**kwargs: keyword arguments forwarded to super.
"""
super(CoachedConvPrefConfig, self).__init__(**kwargs)
class CoachedConvPref(datasets.GeneratorBasedBuilder):
"""Coached Conversational Preference Elicitation Dataset to Understanding Movie Preferences"""
VERSION = datasets.Version("1.1.0")
BUILDER_CONFIGS = [
CoachedConvPrefConfig(
name="coached_conv_pref",
version=datasets.Version("1.1.0"),
description="Coached Conversational Preference Elicitation Dataset to Understanding Movie Preferences",
),
]
def _info(self):
return datasets.DatasetInfo(
description=_DESCRIPTION,
features=datasets.Features(
{
"conversationId": datasets.Value("string"),
"utterances": datasets.Sequence(
{
"index": datasets.Value("int32"),
"speaker": datasets.features.ClassLabel(names=["USER", "ASSISTANT"]),
"text": datasets.Value("string"),
"segments": datasets.Sequence(
{
"startIndex": datasets.Value("int32"),
"endIndex": datasets.Value("int32"),
"text": datasets.Value("string"),
"annotations": datasets.Sequence(
{
"annotationType": datasets.features.ClassLabel(
names=[
"ENTITY_NAME",
"ENTITY_PREFERENCE",
"ENTITY_DESCRIPTION",
"ENTITY_OTHER",
]
),
"entityType": datasets.features.ClassLabel(
names=[
"MOVIE_GENRE_OR_CATEGORY",
"MOVIE_OR_SERIES",
"PERSON",
"SOMETHING_ELSE",
]
),
}
),
}
),
}
),
}
),
supervised_keys=None,
homepage=_HOMEPAGE,
license=_LICENSE,
citation=_CITATION,
)
def _split_generators(self, dl_manager):
"""Returns SplitGenerators."""
data_dir = dl_manager.download_and_extract(_URLs)
# Dataset is a single corpus (does not contain any split)
return [
datasets.SplitGenerator(
name=datasets.Split.TRAIN,
gen_kwargs={
"filepath": os.path.join(data_dir["dataset"]),
"split": "train",
},
),
]
def _generate_examples(self, filepath, split):
"""Yields examples."""
# Empty Segment list with annotations dictionary
# First prompt of a conversation does not contain the segment dictionary
# We are setting it to None values
segments_empty = [
{
"startIndex": 0,
"endIndex": 0,
"text": "",
"annotations": [],
}
]
with open(filepath, encoding="utf-8") as f:
dataset = json.load(f)
for id_, data in enumerate(dataset):
conversationId = data["conversationId"]
utterances = data["utterances"]
for utterance in utterances:
if "segments" not in utterance:
utterance["segments"] = segments_empty.copy()
yield id_, {
"conversationId": conversationId,
"utterances": utterances,
}
|