albertvillanova HF staff commited on
Commit
290898d
1 Parent(s): 5125969

Convert dataset to Parquet (#1)

Browse files

- Convert dataset to Parquet (f08c1ce2ff2bb7a4a9c0deb75bbc7f4bb13134fd)
- Delete loading script (92332a5f94eadab99e4f74598fee2f6c560e0fd0)
- Delete legacy dataset_infos.json (0bc5a4afc3c65b41944a36fbde51d790ce0c8a0d)

README.md CHANGED
@@ -19,8 +19,8 @@ task_categories:
19
  - fill-mask
20
  task_ids:
21
  - dialogue-modeling
22
- pretty_name: Campsite Negotiation Dialogues
23
  paperswithcode_id: casino
 
24
  dataset_info:
25
  features:
26
  - name: chat_logs
@@ -160,10 +160,15 @@ dataset_info:
160
  list: string
161
  splits:
162
  - name: train
163
- num_bytes: 3211555
164
  num_examples: 1030
165
- download_size: 4300019
166
- dataset_size: 3211555
 
 
 
 
 
167
  ---
168
 
169
 
19
  - fill-mask
20
  task_ids:
21
  - dialogue-modeling
 
22
  paperswithcode_id: casino
23
+ pretty_name: Campsite Negotiation Dialogues
24
  dataset_info:
25
  features:
26
  - name: chat_logs
160
  list: string
161
  splits:
162
  - name: train
163
+ num_bytes: 3211407
164
  num_examples: 1030
165
+ download_size: 1247368
166
+ dataset_size: 3211407
167
+ configs:
168
+ - config_name: default
169
+ data_files:
170
+ - split: train
171
+ path: data/train-*
172
  ---
173
 
174
 
casino.py DELETED
@@ -1,192 +0,0 @@
1
- # coding=utf-8
2
- # Copyright 2020 The HuggingFace Datasets Authors and the current dataset script contributor.
3
- #
4
- # Licensed under the Apache License, Version 2.0 (the "License");
5
- # you may not use this file except in compliance with the License.
6
- # You may obtain a copy of the License at
7
- #
8
- # http://www.apache.org/licenses/LICENSE-2.0
9
- #
10
- # Unless required by applicable law or agreed to in writing, software
11
- # distributed under the License is distributed on an "AS IS" BASIS,
12
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
- # See the License for the specific language governing permissions and
14
- # limitations under the License.
15
- """Campsite Negotiation Dialogues"""
16
-
17
- import json
18
-
19
- import datasets
20
-
21
-
22
- _CITATION = """\
23
- @inproceedings{chawla2021casino,
24
- title={CaSiNo: A Corpus of Campsite Negotiation Dialogues for Automatic Negotiation Systems},
25
- author={Chawla, Kushal and Ramirez, Jaysa and Clever, Rene and Lucas, Gale and May, Jonathan and Gratch, Jonathan},
26
- booktitle={Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies},
27
- pages={3167--3185},
28
- year={2021}
29
- }
30
- """
31
-
32
- _DESCRIPTION = """\
33
- We provide a novel dataset (referred to as CaSiNo) of 1030 negotiation dialogues. Two participants take the role of campsite neighbors and negotiate for Food, Water, and Firewood packages, based on their individual preferences and requirements. This design keeps the task tractable, while still facilitating linguistically rich and personal conversations. This helps to overcome the limitations of prior negotiation datasets such as Deal or No Deal and Craigslist Bargain. Each dialogue consists of rich meta-data including participant demographics, personality, and their subjective evaluation of the negotiation in terms of satisfaction and opponent likeness.
34
- """
35
-
36
- _HOMEPAGE = "https://github.com/kushalchawla/CaSiNo"
37
-
38
- _LICENSE = "The project is licensed under CC-BY-4.0"
39
-
40
- _URLs = {
41
- "train": "https://raw.githubusercontent.com/kushalchawla/CaSiNo/main/data/casino.json",
42
- }
43
-
44
-
45
- class Casino(datasets.GeneratorBasedBuilder):
46
- """Campsite Negotiation Dialogues"""
47
-
48
- VERSION = datasets.Version("1.1.0")
49
-
50
- def _info(self):
51
-
52
- features = datasets.Features(
53
- {
54
- "chat_logs": [
55
- {
56
- "text": datasets.Value("string"),
57
- "task_data": {
58
- "data": datasets.Value("string"),
59
- "issue2youget": {
60
- "Firewood": datasets.Value("string"),
61
- "Water": datasets.Value("string"),
62
- "Food": datasets.Value("string"),
63
- },
64
- "issue2theyget": {
65
- "Firewood": datasets.Value("string"),
66
- "Water": datasets.Value("string"),
67
- "Food": datasets.Value("string"),
68
- },
69
- },
70
- "id": datasets.Value("string"),
71
- },
72
- ],
73
- "participant_info": {
74
- "mturk_agent_1": {
75
- "value2issue": {
76
- "Low": datasets.Value("string"),
77
- "Medium": datasets.Value("string"),
78
- "High": datasets.Value("string"),
79
- },
80
- "value2reason": {
81
- "Low": datasets.Value("string"),
82
- "Medium": datasets.Value("string"),
83
- "High": datasets.Value("string"),
84
- },
85
- "outcomes": {
86
- "points_scored": datasets.Value("int32"),
87
- "satisfaction": datasets.Value("string"),
88
- "opponent_likeness": datasets.Value("string"),
89
- },
90
- "demographics": {
91
- "age": datasets.Value("int32"),
92
- "gender": datasets.Value("string"),
93
- "ethnicity": datasets.Value("string"),
94
- "education": datasets.Value("string"),
95
- },
96
- "personality": {
97
- "svo": datasets.Value("string"),
98
- "big-five": {
99
- "extraversion": datasets.Value("float"),
100
- "agreeableness": datasets.Value("float"),
101
- "conscientiousness": datasets.Value("float"),
102
- "emotional-stability": datasets.Value("float"),
103
- "openness-to-experiences": datasets.Value("float"),
104
- },
105
- },
106
- },
107
- "mturk_agent_2": {
108
- "value2issue": {
109
- "Low": datasets.Value("string"),
110
- "Medium": datasets.Value("string"),
111
- "High": datasets.Value("string"),
112
- },
113
- "value2reason": {
114
- "Low": datasets.Value("string"),
115
- "Medium": datasets.Value("string"),
116
- "High": datasets.Value("string"),
117
- },
118
- "outcomes": {
119
- "points_scored": datasets.Value("int32"),
120
- "satisfaction": datasets.Value("string"),
121
- "opponent_likeness": datasets.Value("string"),
122
- },
123
- "demographics": {
124
- "age": datasets.Value("int32"),
125
- "gender": datasets.Value("string"),
126
- "ethnicity": datasets.Value("string"),
127
- "education": datasets.Value("string"),
128
- },
129
- "personality": {
130
- "svo": datasets.Value("string"),
131
- "big-five": {
132
- "extraversion": datasets.Value("float"),
133
- "agreeableness": datasets.Value("float"),
134
- "conscientiousness": datasets.Value("float"),
135
- "emotional-stability": datasets.Value("float"),
136
- "openness-to-experiences": datasets.Value("float"),
137
- },
138
- },
139
- },
140
- },
141
- "annotations": [[datasets.Value("string")]],
142
- }
143
- )
144
-
145
- return datasets.DatasetInfo(
146
- description=_DESCRIPTION,
147
- features=features,
148
- supervised_keys=None,
149
- homepage=_HOMEPAGE,
150
- license=_LICENSE,
151
- citation=_CITATION,
152
- )
153
-
154
- def _split_generators(self, dl_manager):
155
- """Returns SplitGenerators."""
156
- path = dl_manager.download_and_extract(_URLs["train"])
157
- return [
158
- datasets.SplitGenerator(
159
- name=datasets.Split.TRAIN,
160
- gen_kwargs={
161
- "filepath": path,
162
- "split": "train",
163
- },
164
- ),
165
- ]
166
-
167
- def _generate_examples(self, filepath, split="train"):
168
- """Yields examples."""
169
-
170
- with open(filepath, encoding="utf-8") as f:
171
- all_data = json.load(f)
172
-
173
- for idx, item in enumerate(all_data):
174
-
175
- for chat_item in item["chat_logs"]:
176
- if "data" not in chat_item["task_data"]:
177
- chat_item["task_data"]["data"] = ""
178
- if "issue2youget" not in chat_item["task_data"]:
179
- chat_item["task_data"]["issue2youget"] = {
180
- "Food": "",
181
- "Firewood": "",
182
- "Water": "",
183
- }
184
- if "issue2theyget" not in chat_item["task_data"]:
185
- chat_item["task_data"]["issue2theyget"] = {
186
- "Food": "",
187
- "Firewood": "",
188
- "Water": "",
189
- }
190
-
191
- item.pop("dialogue_id")
192
- yield idx, item
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
data/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1fb8a0da5097d2b6564090021d9d72bd43c214e95a872f4abf9626730067fd72
3
+ size 1247368
dataset_infos.json DELETED
@@ -1 +0,0 @@
1
- {"default": {"description": "We provide a novel dataset (referred to as CaSiNo) of 1030 negotiation dialogues. Two participants take the role of campsite neighbors and negotiate for Food, Water, and Firewood packages, based on their individual preferences and requirements. This design keeps the task tractable, while still facilitating linguistically rich and personal conversations. This helps to overcome the limitations of prior negotiation datasets such as Deal or No Deal and Craigslist Bargain. Each dialogue consists of rich meta-data including participant demographics, personality, and their subjective evaluation of the negotiation in terms of satisfaction and opponent likeness.\n", "citation": "@inproceedings{chawla2021casino,\n title={CaSiNo: A Corpus of Campsite Negotiation Dialogues for Automatic Negotiation Systems},\n author={Chawla, Kushal and Ramirez, Jaysa and Clever, Rene and Lucas, Gale and May, Jonathan and Gratch, Jonathan},\n booktitle={Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies},\n pages={3167--3185},\n year={2021}\n}\n", "homepage": "https://github.com/kushalchawla/CaSiNo", "license": "The project is licensed under CC-BY-4.0", "features": {"chat_logs": [{"text": {"dtype": "string", "id": null, "_type": "Value"}, "task_data": {"data": {"dtype": "string", "id": null, "_type": "Value"}, "issue2youget": {"Firewood": {"dtype": "string", "id": null, "_type": "Value"}, "Water": {"dtype": "string", "id": null, "_type": "Value"}, "Food": {"dtype": "string", "id": null, "_type": "Value"}}, "issue2theyget": {"Firewood": {"dtype": "string", "id": null, "_type": "Value"}, "Water": {"dtype": "string", "id": null, "_type": "Value"}, "Food": {"dtype": "string", "id": null, "_type": "Value"}}}, "id": {"dtype": "string", "id": null, "_type": "Value"}}], "participant_info": {"mturk_agent_1": {"value2issue": {"Low": {"dtype": "string", "id": null, "_type": "Value"}, "Medium": {"dtype": "string", "id": null, "_type": "Value"}, "High": {"dtype": "string", "id": null, "_type": "Value"}}, "value2reason": {"Low": {"dtype": "string", "id": null, "_type": "Value"}, "Medium": {"dtype": "string", "id": null, "_type": "Value"}, "High": {"dtype": "string", "id": null, "_type": "Value"}}, "outcomes": {"points_scored": {"dtype": "int32", "id": null, "_type": "Value"}, "satisfaction": {"dtype": "string", "id": null, "_type": "Value"}, "opponent_likeness": {"dtype": "string", "id": null, "_type": "Value"}}, "demographics": {"age": {"dtype": "int32", "id": null, "_type": "Value"}, "gender": {"dtype": "string", "id": null, "_type": "Value"}, "ethnicity": {"dtype": "string", "id": null, "_type": "Value"}, "education": {"dtype": "string", "id": null, "_type": "Value"}}, "personality": {"svo": {"dtype": "string", "id": null, "_type": "Value"}, "big-five": {"extraversion": {"dtype": "float32", "id": null, "_type": "Value"}, "agreeableness": {"dtype": "float32", "id": null, "_type": "Value"}, "conscientiousness": {"dtype": "float32", "id": null, "_type": "Value"}, "emotional-stability": {"dtype": "float32", "id": null, "_type": "Value"}, "openness-to-experiences": {"dtype": "float32", "id": null, "_type": "Value"}}}}, "mturk_agent_2": {"value2issue": {"Low": {"dtype": "string", "id": null, "_type": "Value"}, "Medium": {"dtype": "string", "id": null, "_type": "Value"}, "High": {"dtype": "string", "id": null, "_type": "Value"}}, "value2reason": {"Low": {"dtype": "string", "id": null, "_type": "Value"}, "Medium": {"dtype": "string", "id": null, "_type": "Value"}, "High": {"dtype": "string", "id": null, "_type": "Value"}}, "outcomes": {"points_scored": {"dtype": "int32", "id": null, "_type": "Value"}, "satisfaction": {"dtype": "string", "id": null, "_type": "Value"}, "opponent_likeness": {"dtype": "string", "id": null, "_type": "Value"}}, "demographics": {"age": {"dtype": "int32", "id": null, "_type": "Value"}, "gender": {"dtype": "string", "id": null, "_type": "Value"}, "ethnicity": {"dtype": "string", "id": null, "_type": "Value"}, "education": {"dtype": "string", "id": null, "_type": "Value"}}, "personality": {"svo": {"dtype": "string", "id": null, "_type": "Value"}, "big-five": {"extraversion": {"dtype": "float32", "id": null, "_type": "Value"}, "agreeableness": {"dtype": "float32", "id": null, "_type": "Value"}, "conscientiousness": {"dtype": "float32", "id": null, "_type": "Value"}, "emotional-stability": {"dtype": "float32", "id": null, "_type": "Value"}, "openness-to-experiences": {"dtype": "float32", "id": null, "_type": "Value"}}}}}, "annotations": [[{"dtype": "string", "id": null, "_type": "Value"}]]}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "casino", "config_name": "default", "version": {"version_str": "1.1.0", "description": null, "major": 1, "minor": 1, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 3211555, "num_examples": 1030, "dataset_name": "casino"}}, "download_checksums": {"https://raw.githubusercontent.com/kushalchawla/CaSiNo/main/data/casino.json": {"num_bytes": 4300019, "checksum": "4f2c4560a0070906ed018c3f0766e35f8f8f31b36274ebf35b608621915744ab"}}, "download_size": 4300019, "post_processing_size": null, "dataset_size": 3211555, "size_in_bytes": 7511574}}