kursathalat commited on
Commit
de2c21f
1 Parent(s): a991b8c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +253 -49
README.md CHANGED
@@ -1,52 +1,256 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: text
5
- dtype: string
6
- id: field
7
- - name: label
8
- list:
9
- - name: user_id
10
- dtype: string
11
- id: question
12
- - name: value
13
- sequence: string
14
- id: suggestion
15
- - name: status
16
- dtype: string
17
- id: question
18
- - name: label-suggestion
19
- sequence: string
20
- id: suggestion
21
- - name: label-suggestion-metadata
22
- struct:
23
- - name: type
24
- dtype: string
25
- id: suggestion-metadata
26
- - name: score
27
- dtype: float32
28
- id: suggestion-metadata
29
- - name: agent
30
- dtype: string
31
- id: suggestion-metadata
32
- - name: external_id
33
- dtype: string
34
- id: external_id
35
- - name: metadata
36
- dtype: string
37
- id: metadata
38
- splits:
39
- - name: train
40
- num_bytes: 2261
41
- num_examples: 10
42
- download_size: 7947
43
- dataset_size: 2261
44
- configs:
45
- - config_name: default
46
- data_files:
47
- - split: train
48
- path: data/train-*
49
  ---
50
- # Dataset Card for "multilabel_ds"
51
 
52
- [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ size_categories: n<1K
3
+ tags:
4
+ - rlfh
5
+ - argilla
6
+ - human-feedback
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  ---
 
8
 
9
+ # Dataset Card for multilabel_ds
10
+
11
+ This dataset has been created with [Argilla](https://docs.argilla.io).
12
+
13
+ As shown in the sections below, this dataset can be loaded into Argilla as explained in [Load with Argilla](#load-with-argilla), or used directly with the `datasets` library in [Load with `datasets`](#load-with-datasets).
14
+
15
+ ## Dataset Description
16
+
17
+ - **Homepage:** https://argilla.io
18
+ - **Repository:** https://github.com/argilla-io/argilla
19
+ - **Paper:**
20
+ - **Leaderboard:**
21
+ - **Point of Contact:**
22
+
23
+ ### Dataset Summary
24
+
25
+ This dataset contains:
26
+
27
+ * A dataset configuration file conforming to the Argilla dataset format named `argilla.yaml`. This configuration file will be used to configure the dataset when using the `FeedbackDataset.from_huggingface` method in Argilla.
28
+
29
+ * Dataset records in a format compatible with HuggingFace `datasets`. These records will be loaded automatically when using `FeedbackDataset.from_huggingface` and can be loaded independently using the `datasets` library via `load_dataset`.
30
+
31
+ * The [annotation guidelines](#annotation-guidelines) that have been used for building and curating the dataset, if they've been defined in Argilla.
32
+
33
+ ### Load with Argilla
34
+
35
+ To load with Argilla, you'll just need to install Argilla as `pip install argilla --upgrade` and then use the following code:
36
+
37
+ ```python
38
+ import argilla as rg
39
+
40
+ ds = rg.FeedbackDataset.from_huggingface("kursathalat/multilabel_ds")
41
+ ```
42
+
43
+ ### Load with `datasets`
44
+
45
+ To load this dataset with `datasets`, you'll just need to install `datasets` as `pip install datasets --upgrade` and then use the following code:
46
+
47
+ ```python
48
+ from datasets import load_dataset
49
+
50
+ ds = load_dataset("kursathalat/multilabel_ds")
51
+ ```
52
+
53
+ ### Supported Tasks and Leaderboards
54
+
55
+ This dataset can contain [multiple fields, questions and responses](https://docs.argilla.io/en/latest/conceptual_guides/data_model.html#feedback-dataset) so it can be used for different NLP tasks, depending on the configuration. The dataset structure is described in the [Dataset Structure section](#dataset-structure).
56
+
57
+ There are no leaderboards associated with this dataset.
58
+
59
+ ### Languages
60
+
61
+ [More Information Needed]
62
+
63
+ ## Dataset Structure
64
+
65
+ ### Data in Argilla
66
+
67
+ The dataset is created in Argilla with: **fields**, **questions**, **suggestions**, **metadata**, **vectors**, and **guidelines**.
68
+
69
+ The **fields** are the dataset records themselves, for the moment just text fields are supported. These are the ones that will be used to provide responses to the questions.
70
+
71
+ | Field Name | Title | Type | Required | Markdown |
72
+ | ---------- | ----- | ---- | -------- | -------- |
73
+ | text | Text | text | True | False |
74
+
75
+
76
+ The **questions** are the questions that will be asked to the annotators. They can be of different types, such as rating, text, label_selection, multi_label_selection, or ranking.
77
+
78
+ | Question Name | Title | Type | Required | Description | Values/Labels |
79
+ | ------------- | ----- | ---- | -------- | ----------- | ------------- |
80
+ | label | Label | multi_label_selection | True | N/A | ['admiration', 'amusement', 'anger', 'annoyance', 'approval', 'caring', 'confusion', 'curiosity', 'desire', 'disappointment', 'disapproval', 'disgust', 'embarrassment', 'excitement', 'fear', 'gratitude', 'grief', 'joy', 'love', 'nervousness', 'optimism', 'pride', 'realization', 'relief', 'remorse', 'sadness', 'surprise', 'neutral'] |
81
+
82
+
83
+ The **suggestions** are human or machine generated recommendations for each question to assist the annotator during the annotation process, so those are always linked to the existing questions, and named appending "-suggestion" and "-suggestion-metadata" to those, containing the value/s of the suggestion and its metadata, respectively. So on, the possible values are the same as in the table above, but the column name is appended with "-suggestion" and the metadata is appended with "-suggestion-metadata".
84
+
85
+ The **metadata** is a dictionary that can be used to provide additional information about the dataset record. This can be useful to provide additional context to the annotators, or to provide additional information about the dataset record itself. For example, you can use this to provide a link to the original source of the dataset record, or to provide additional information about the dataset record itself, such as the author, the date, or the source. The metadata is always optional, and can be potentially linked to the `metadata_properties` defined in the dataset configuration file in `argilla.yaml`.
86
+
87
+
88
+
89
+ | Metadata Name | Title | Type | Values | Visible for Annotators |
90
+ | ------------- | ----- | ---- | ------ | ---------------------- |
91
+
92
+
93
+ The **guidelines**, are optional as well, and are just a plain string that can be used to provide instructions to the annotators. Find those in the [annotation guidelines](#annotation-guidelines) section.
94
+
95
+ ### Data Instances
96
+
97
+ An example of a dataset instance in Argilla looks as follows:
98
+
99
+ ```json
100
+ {
101
+ "external_id": null,
102
+ "fields": {
103
+ "text": " \"If you don\u0027t wear BROWN AND ORANGE...YOU DON\u0027T MATTER!\" We need a tshirt with that on it asap! "
104
+ },
105
+ "metadata": {},
106
+ "responses": [
107
+ {
108
+ "status": "submitted",
109
+ "user_id": "525f4274-ebb4-4aee-a116-f8b422b2e2b4",
110
+ "values": {
111
+ "label": {
112
+ "value": [
113
+ "approval",
114
+ "neutral"
115
+ ]
116
+ }
117
+ }
118
+ }
119
+ ],
120
+ "suggestions": [
121
+ {
122
+ "agent": null,
123
+ "question_name": "label",
124
+ "score": null,
125
+ "type": "human",
126
+ "value": [
127
+ "annoyance",
128
+ "neutral"
129
+ ]
130
+ }
131
+ ],
132
+ "vectors": {}
133
+ }
134
+ ```
135
+
136
+ While the same record in HuggingFace `datasets` looks as follows:
137
+
138
+ ```json
139
+ {
140
+ "external_id": null,
141
+ "label": [
142
+ {
143
+ "status": "submitted",
144
+ "user_id": "525f4274-ebb4-4aee-a116-f8b422b2e2b4",
145
+ "value": [
146
+ "approval",
147
+ "neutral"
148
+ ]
149
+ }
150
+ ],
151
+ "label-suggestion": [
152
+ "annoyance",
153
+ "neutral"
154
+ ],
155
+ "label-suggestion-metadata": {
156
+ "agent": null,
157
+ "score": null,
158
+ "type": "human"
159
+ },
160
+ "metadata": "{}",
161
+ "text": " \"If you don\u0027t wear BROWN AND ORANGE...YOU DON\u0027T MATTER!\" We need a tshirt with that on it asap! "
162
+ }
163
+ ```
164
+
165
+ ### Data Fields
166
+
167
+ Among the dataset fields, we differentiate between the following:
168
+
169
+ * **Fields:** These are the dataset records themselves, for the moment just text fields are supported. These are the ones that will be used to provide responses to the questions.
170
+
171
+ * **text** is of type `text`.
172
+
173
+ * **Questions:** These are the questions that will be asked to the annotators. They can be of different types, such as `RatingQuestion`, `TextQuestion`, `LabelQuestion`, `MultiLabelQuestion`, and `RankingQuestion`.
174
+
175
+ * **label** is of type `multi_label_selection` with the following allowed values ['admiration', 'amusement', 'anger', 'annoyance', 'approval', 'caring', 'confusion', 'curiosity', 'desire', 'disappointment', 'disapproval', 'disgust', 'embarrassment', 'excitement', 'fear', 'gratitude', 'grief', 'joy', 'love', 'nervousness', 'optimism', 'pride', 'realization', 'relief', 'remorse', 'sadness', 'surprise', 'neutral'].
176
+
177
+ * **Suggestions:** As of Argilla 1.13.0, the suggestions have been included to provide the annotators with suggestions to ease or assist during the annotation process. Suggestions are linked to the existing questions, are always optional, and contain not just the suggestion itself, but also the metadata linked to it, if applicable.
178
+
179
+ * (optional) **label-suggestion** is of type `multi_label_selection` with the following allowed values ['admiration', 'amusement', 'anger', 'annoyance', 'approval', 'caring', 'confusion', 'curiosity', 'desire', 'disappointment', 'disapproval', 'disgust', 'embarrassment', 'excitement', 'fear', 'gratitude', 'grief', 'joy', 'love', 'nervousness', 'optimism', 'pride', 'realization', 'relief', 'remorse', 'sadness', 'surprise', 'neutral'].
180
+
181
+
182
+
183
+ Additionally, we also have two more fields that are optional and are the following:
184
+
185
+ * **metadata:** This is an optional field that can be used to provide additional information about the dataset record. This can be useful to provide additional context to the annotators, or to provide additional information about the dataset record itself. For example, you can use this to provide a link to the original source of the dataset record, or to provide additional information about the dataset record itself, such as the author, the date, or the source. The metadata is always optional, and can be potentially linked to the `metadata_properties` defined in the dataset configuration file in `argilla.yaml`.
186
+ * **external_id:** This is an optional field that can be used to provide an external ID for the dataset record. This can be useful if you want to link the dataset record to an external resource, such as a database or a file.
187
+
188
+ ### Data Splits
189
+
190
+ The dataset contains a single split, which is `train`.
191
+
192
+ ## Dataset Creation
193
+
194
+ ### Curation Rationale
195
+
196
+ [More Information Needed]
197
+
198
+ ### Source Data
199
+
200
+ #### Initial Data Collection and Normalization
201
+
202
+ [More Information Needed]
203
+
204
+ #### Who are the source language producers?
205
+
206
+ [More Information Needed]
207
+
208
+ ### Annotations
209
+
210
+ #### Annotation guidelines
211
+
212
+ This is a text classification dataset that contains texts and labels. Given a set of texts and a predefined set of labels, the goal of text classification is to assign one or more labels to each text based on its content. Please classify the texts by making the correct selection.
213
+
214
+ #### Annotation process
215
+
216
+ [More Information Needed]
217
+
218
+ #### Who are the annotators?
219
+
220
+ [More Information Needed]
221
+
222
+ ### Personal and Sensitive Information
223
+
224
+ [More Information Needed]
225
+
226
+ ## Considerations for Using the Data
227
+
228
+ ### Social Impact of Dataset
229
+
230
+ [More Information Needed]
231
+
232
+ ### Discussion of Biases
233
+
234
+ [More Information Needed]
235
+
236
+ ### Other Known Limitations
237
+
238
+ [More Information Needed]
239
+
240
+ ## Additional Information
241
+
242
+ ### Dataset Curators
243
+
244
+ [More Information Needed]
245
+
246
+ ### Licensing Information
247
+
248
+ [More Information Needed]
249
+
250
+ ### Citation Information
251
+
252
+ [More Information Needed]
253
+
254
+ ### Contributions
255
+
256
+ [More Information Needed]