system HF staff commited on
Commit
239dbae
1 Parent(s): 4b18ec2

Update files from the datasets library (from 1.2.1)

Browse files

Release notes: https://github.com/huggingface/datasets/releases/tag/1.2.1

Files changed (1) hide show
  1. README.md +157 -13
README.md CHANGED
@@ -16,6 +16,7 @@ source_datasets:
16
  task_categories:
17
  - sequence-modeling
18
  task_ids:
 
19
  - sequence-modeling-other-conversational-curiosity
20
  ---
21
 
@@ -46,37 +47,172 @@ task_ids:
46
 
47
  ## Dataset Description
48
 
49
- - **Homepage:** [Pedro.ai](https://www.pedro.ai/curiosity)
50
- - **Repository:**
51
- - **Paper:** [Aclweb](https://www.aclweb.org/anthology/2020.emnlp-main.655/)
52
- - **Leaderboard:**
53
- - **Point of Contact:**
54
 
55
  ### Dataset Summary
56
 
57
- [More Information Needed]
58
 
59
  ### Supported Tasks and Leaderboards
60
 
61
- [More Information Needed]
62
 
63
  ### Languages
64
 
65
- [More Information Needed]
66
 
67
  ## Dataset Structure
68
 
69
  ### Data Instances
70
 
71
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
 
73
  ### Data Fields
74
 
75
- [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
76
 
77
  ### Data Splits
78
 
79
- [More Information Needed]
 
 
 
 
80
 
81
  ## Dataset Creation
82
 
@@ -130,8 +266,16 @@ task_ids:
130
 
131
  ### Licensing Information
132
 
133
- [More Information Needed]
134
 
135
  ### Citation Information
136
 
137
- [More Information Needed]
 
 
 
 
 
 
 
 
 
16
  task_categories:
17
  - sequence-modeling
18
  task_ids:
19
+ - dialogue-modeling
20
  - sequence-modeling-other-conversational-curiosity
21
  ---
22
 
 
47
 
48
  ## Dataset Description
49
 
50
+ - **Homepage:** [Curiosity Dataset Homepage](https://www.pedro.ai/curiosity)
51
+ - **Repository:** [Curiosity Dataset Repository](https://github.com/facebookresearch/curiosity)
52
+ - **Paper:** [ACL Anthology](https://www.aclweb.org/anthology/2020.emnlp-main.655/)
53
+ - **Point of Contact:** [Pedro Rodriguez](https://mailhide.io/e/wbfjM)
 
54
 
55
  ### Dataset Summary
56
 
57
+ Curiosity dataset consists of 14K English dialogs (181K utterances) where users and assistants converse about geographic topics like geopolitical entities and locations. This dataset is annotated with pre-existing user knowledge, message-level dialog acts, grounding to Wikipedia, and user reactions to messages.
58
 
59
  ### Supported Tasks and Leaderboards
60
 
61
+ * `sequence-modeling-other-conversational-curiosity`: The dataset can be used to train a model for Conversational Curiosity, which consists in the testing of the hypothesis that engagement increases when users are presented with facts related to what they know. Success on this task is typically measured by achieving a *high* [Accuracy](https://huggingface.co/metrics/accuracy) and [F1 Score](https://huggingface.co/metrics/f1).
62
 
63
  ### Languages
64
 
65
+ The text in the dataset is in English collected by crowd-souring. The associated BCP-47 code is `en`.
66
 
67
  ## Dataset Structure
68
 
69
  ### Data Instances
70
 
71
+ A typical data point consists of dialogs between an user and an assistant, which is followed by the different attributes of the particular dialog.
72
+
73
+ An example from the Curiosity Dataset train set looks as follows:
74
+
75
+ ```
76
+ {'annotated': 1,
77
+ 'aspects': ['Media', 'Politics and government'],
78
+ 'assistant_dialog_rating': 5,
79
+ 'assistant_id': 341,
80
+ 'assistant_other_agent_rating': 5,
81
+ 'created_time': 1571783665,
82
+ 'dialog_id': 21922,
83
+ 'first_aspect': 'Media',
84
+ 'focus_entity': 'Namibia',
85
+ 'inferred_steps': 1,
86
+ 'is_annotated': 0,
87
+ 'known_entities': ['South Africa', 'United Kingdom', 'Portugal'],
88
+ 'messages': {'dialog_acts': [['request_topic'],
89
+ ['inform_response'],
90
+ ['request_aspect'],
91
+ ['inform_response'],
92
+ ['request_followup'],
93
+ ['inform_response'],
94
+ ['request_aspect', 'feedback_positive'],
95
+ ['inform_response'],
96
+ ['request_followup'],
97
+ ['inform_response'],
98
+ [],
99
+ []],
100
+ 'facts': [{'fid': [], 'source': [], 'used': []},
101
+ {'fid': [77870, 77676, 77816, 77814, 77775, 77659, 77877, 77785, 77867],
102
+ 'source': [0, 1, 2, 2, 0, 2, 0, 1, 1],
103
+ 'used': [0, 0, 0, 0, 0, 0, 0, 0, 0]},
104
+ {'fid': [], 'source': [], 'used': []},
105
+ {'fid': [77725, 77870, 77676, 77863, 77814, 77775, 77659, 77877, 77867],
106
+ 'source': [2, 0, 1, 1, 2, 0, 2, 0, 1],
107
+ 'used': [0, 0, 0, 0, 0, 0, 0, 0, 0]},
108
+ {'fid': [], 'source': [], 'used': []},
109
+ {'fid': [77694, 77661, 77863, 77780, 77671, 77704, 77869, 77693, 77877],
110
+ 'source': [1, 2, 1, 0, 2, 2, 0, 1, 0],
111
+ 'used': [0, 0, 0, 0, 0, 0, 0, 0, 1]},
112
+ {'fid': [], 'source': [], 'used': []},
113
+ {'fid': [77816, 77814, 77864, 77659, 77877, 77803, 77738, 77784, 77789],
114
+ 'source': [2, 2, 0, 2, 0, 1, 1, 0, 1],
115
+ 'used': [0, 0, 0, 0, 0, 0, 0, 0, 0]},
116
+ {'fid': [], 'source': [], 'used': []},
117
+ {'fid': [77694, 77776, 77780, 77696, 77707, 77693, 77778, 77702, 77743],
118
+ 'source': [1, 0, 0, 2, 1, 1, 0, 2, 2],
119
+ 'used': [0, 0, 0, 0, 0, 0, 0, 0, 0]},
120
+ {'fid': [], 'source': [], 'used': []},
121
+ {'fid': [77662, 77779, 77742, 77734, 77663, 77777, 77702, 77731, 77778],
122
+ 'source': [1, 0, 2, 1, 2, 0, 2, 1, 0],
123
+ 'used': [0, 0, 0, 0, 0, 0, 0, 0, 1]}],
124
+ 'liked': [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0],
125
+ 'message': ['Hi. I want information about Namibia.',
126
+ 'Nmbia is a country in southern Africa.',
127
+ 'Do you have information about the media there?',
128
+ 'A mentional amount of foriegn',
129
+ 'What about it?',
130
+ "Media and journalists in Namibia are represented by the Namibia chapter of the Media Institute of 'southern Africa and the Editors Forum of Namibia.",
131
+ 'Interesting! What can you tell me about the politics and government?',
132
+ 'Namibia formed the Namibian Defence Force, comprising former enemies in a 23-year bush war.',
133
+ 'Do you have more information about it?',
134
+ "With a small army and a fragile economy , the Namibian government's principal foreign policy concern is developing strengthened ties within the Southern African region.",
135
+ "That's all I wanted to know. Thank you!",
136
+ 'My pleasure!'],
137
+ 'message_id': ['617343895',
138
+ '2842515356',
139
+ '4240816985',
140
+ '520711081',
141
+ '1292358002',
142
+ '3677078227',
143
+ '1563061125',
144
+ '1089028270',
145
+ '1607063839',
146
+ '113037558',
147
+ '1197873991',
148
+ '1399017322'],
149
+ 'sender': [0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1]},
150
+ 'related_entities': ['Western Roman Empire',
151
+ 'United Kingdom',
152
+ 'Portuguese language',
153
+ 'Southern African Development Community',
154
+ 'South Africa',
155
+ 'Kalahari Desert',
156
+ 'Namib Desert',
157
+ 'League of Nations',
158
+ 'Afrikaans',
159
+ 'Sub-Saharan Africa',
160
+ 'Portugal',
161
+ 'South-West Africa',
162
+ 'Warmbad, Namibia',
163
+ 'German language',
164
+ 'NBC'],
165
+ 'reported': 0,
166
+ 'second_aspect': 'Politics and government',
167
+ 'shuffle_facts': 1,
168
+ 'tag': 'round_2',
169
+ 'user_dialog_rating': 5,
170
+ 'user_id': 207,
171
+ 'user_other_agent_rating': 5}
172
+ ```
173
+
174
+
175
 
176
  ### Data Fields
177
 
178
+ * `messages`: List of dialogs between the user and the assistant and their associated attributes
179
+ * `dialog_acts`: List of actions performed in the dialogs
180
+ * `facts`: List of facts returned by the assistant
181
+ * `fid`: Fact ID
182
+ * `source`: Source for the fact
183
+ * `used`: Whether facts were used before in the same dialog
184
+ * `liked`: List of values indicating whether each dialog was liked
185
+ * `message`: List of dialogs (messages) between the user and the assistant
186
+ * `message_id`: Message ID
187
+ * `sender`: Message author ID (numeric)
188
+ * `known_entities`: Rooted facts about entities the user knows
189
+ * `focus_entity` : Entity in focus in the dialogs
190
+ * `dialog_id `: Dialog ID
191
+ * `inferred_steps`: Number of inferred steps
192
+ * `created_time`: Time of creation of the dialog
193
+ * `aspects`: List of two aspects which the dialog is about
194
+ * `first_aspect`: First aspect
195
+ * `second_aspect`: Second aspect
196
+ * `shuffle_facts`: Whether facts were shuffled
197
+ * `related_entities` : List of fifteen related entities to the focus entity
198
+ * `tag`: Conversation tag
199
+ * `user_id`: User ID
200
+ * `assistant_id`: Assistant ID
201
+ * `is_annotated`: 0 or 1 (More Information Needed)
202
+ * `user_dialog_rating`: 1 - 5 (More Information Needed)
203
+ * `user_other_agent_rating`: 1 - 5 (More Information Needed)
204
+ * `assistant_dialog_rating`: 1 - 5 (More Information Needed)
205
+ * `assistant_other_agent_rating`: 1 - 5 (More Information Needed)
206
+ * `reported`: Whether the dialog was reported inappropriate
207
+ * `annotated`: 0 or 1 (More Information Needed)
208
 
209
  ### Data Splits
210
 
211
+ The data is split into a training, validation, test and test_zero set as per the original dataset split.
212
+
213
+ | | Tain | Valid | Test | Test Zero |
214
+ | --------------------- | ----- | ----- | ---- | --------- |
215
+ | Input dialog examples | 10287 | 1287 | 1287 | 1187 |
216
 
217
  ## Dataset Creation
218
 
 
266
 
267
  ### Licensing Information
268
 
269
+ [Attribution-NonCommercial 4.0 International](https://creativecommons.org/licenses/by-nc/4.0/legalcode)
270
 
271
  ### Citation Information
272
 
273
+ ```
274
+ @inproceedings{rodriguez2020curiosity,
275
+ title = {Information Seeking in the Spirit of Learning: a Dataset for Conversational Curiosity},
276
+ author = {Pedro Rodriguez and Paul Crook and Seungwhan Moon and Zhiguang Wang},
277
+ year = 2020,
278
+ booktitle = {Empirical Methods in Natural Language Processing}
279
+ }
280
+ ```
281
+