Commit
·
a2487fd
1
Parent(s):
b7105c1
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -4,53 +4,6 @@ tags:
|
|
4 |
- rlfh
|
5 |
- argilla
|
6 |
- human-feedback
|
7 |
-
dataset_info:
|
8 |
-
features:
|
9 |
-
- name: text
|
10 |
-
dtype: string
|
11 |
-
id: field
|
12 |
-
- name: label
|
13 |
-
list:
|
14 |
-
- name: user_id
|
15 |
-
dtype: string
|
16 |
-
id: question
|
17 |
-
- name: value
|
18 |
-
dtype: string
|
19 |
-
id: suggestion
|
20 |
-
- name: status
|
21 |
-
dtype: string
|
22 |
-
id: question
|
23 |
-
- name: label-suggestion
|
24 |
-
dtype: string
|
25 |
-
id: suggestion
|
26 |
-
- name: label-suggestion-metadata
|
27 |
-
struct:
|
28 |
-
- name: type
|
29 |
-
dtype: string
|
30 |
-
id: suggestion-metadata
|
31 |
-
- name: score
|
32 |
-
dtype: float32
|
33 |
-
id: suggestion-metadata
|
34 |
-
- name: agent
|
35 |
-
dtype: string
|
36 |
-
id: suggestion-metadata
|
37 |
-
- name: external_id
|
38 |
-
dtype: string
|
39 |
-
id: external_id
|
40 |
-
- name: metadata
|
41 |
-
dtype: string
|
42 |
-
id: metadata
|
43 |
-
splits:
|
44 |
-
- name: train
|
45 |
-
num_bytes: 294637
|
46 |
-
num_examples: 1000
|
47 |
-
download_size: 175020
|
48 |
-
dataset_size: 294637
|
49 |
-
configs:
|
50 |
-
- config_name: default
|
51 |
-
data_files:
|
52 |
-
- split: train
|
53 |
-
path: data/train-*
|
54 |
---
|
55 |
|
56 |
# Dataset Card for end2end_textclassification
|
@@ -117,14 +70,14 @@ The **fields** are the dataset records themselves, for the moment just text fiel
|
|
117 |
|
118 |
| Field Name | Title | Type | Required | Markdown |
|
119 |
| ---------- | ----- | ---- | -------- | -------- |
|
120 |
-
| text | Text |
|
121 |
|
122 |
|
123 |
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.
|
124 |
|
125 |
| Question Name | Title | Type | Required | Description | Values/Labels |
|
126 |
| ------------- | ----- | ---- | -------- | ----------- | ------------- |
|
127 |
-
| label | Label |
|
128 |
|
129 |
|
130 |
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".
|
@@ -135,9 +88,6 @@ The **metadata** is a dictionary that can be used to provide additional informat
|
|
135 |
|
136 |
| Metadata Name | Title | Type | Values | Visible for Annotators |
|
137 |
| ------------- | ----- | ---- | ------ | ---------------------- |
|
138 |
-
| group | Annotation Group | terms | ['group-1', 'group-2', 'group-3'] | True |
|
139 |
-
| length | Length of the text | integer | 100 - 862 | True |
|
140 |
-
| length_std | Standard deviation of the length of the text | float | 139.096 - 361.398 | True |
|
141 |
|
142 |
|
143 |
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.
|
@@ -152,11 +102,7 @@ An example of a dataset instance in Argilla looks as follows:
|
|
152 |
"fields": {
|
153 |
"text": "Wall St. Bears Claw Back Into the Black (Reuters) Reuters - Short-sellers, Wall Street\u0027s dwindling\\band of ultra-cynics, are seeing green again."
|
154 |
},
|
155 |
-
"metadata": {
|
156 |
-
"group": "group-2",
|
157 |
-
"length": 144,
|
158 |
-
"length_std": 144.0
|
159 |
-
},
|
160 |
"responses": [],
|
161 |
"suggestions": [],
|
162 |
"vectors": {}
|
@@ -175,7 +121,7 @@ While the same record in HuggingFace `datasets` looks as follows:
|
|
175 |
"score": null,
|
176 |
"type": null
|
177 |
},
|
178 |
-
"metadata": "{
|
179 |
"text": "Wall St. Bears Claw Back Into the Black (Reuters) Reuters - Short-sellers, Wall Street\u0027s dwindling\\band of ultra-cynics, are seeing green again."
|
180 |
}
|
181 |
```
|
@@ -186,15 +132,15 @@ Among the dataset fields, we differentiate between the following:
|
|
186 |
|
187 |
* **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.
|
188 |
|
189 |
-
* **text** is of type `
|
190 |
|
191 |
* **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`.
|
192 |
|
193 |
-
* **label** is of type `
|
194 |
|
195 |
* **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.
|
196 |
|
197 |
-
* (optional) **label-suggestion** is of type `
|
198 |
|
199 |
|
200 |
|
|
|
4 |
- rlfh
|
5 |
- argilla
|
6 |
- human-feedback
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
---
|
8 |
|
9 |
# Dataset Card for end2end_textclassification
|
|
|
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 | label_selection | True | N/A | ['World', 'Sports', 'Business', 'Sci/Tech'] |
|
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".
|
|
|
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.
|
|
|
102 |
"fields": {
|
103 |
"text": "Wall St. Bears Claw Back Into the Black (Reuters) Reuters - Short-sellers, Wall Street\u0027s dwindling\\band of ultra-cynics, are seeing green again."
|
104 |
},
|
105 |
+
"metadata": {},
|
|
|
|
|
|
|
|
|
106 |
"responses": [],
|
107 |
"suggestions": [],
|
108 |
"vectors": {}
|
|
|
121 |
"score": null,
|
122 |
"type": null
|
123 |
},
|
124 |
+
"metadata": "{}",
|
125 |
"text": "Wall St. Bears Claw Back Into the Black (Reuters) Reuters - Short-sellers, Wall Street\u0027s dwindling\\band of ultra-cynics, are seeing green again."
|
126 |
}
|
127 |
```
|
|
|
132 |
|
133 |
* **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.
|
134 |
|
135 |
+
* **text** is of type `text`.
|
136 |
|
137 |
* **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`.
|
138 |
|
139 |
+
* **label** is of type `label_selection` with the following allowed values ['World', 'Sports', 'Business', 'Sci/Tech'].
|
140 |
|
141 |
* **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.
|
142 |
|
143 |
+
* (optional) **label-suggestion** is of type `label_selection` with the following allowed values ['World', 'Sports', 'Business', 'Sci/Tech'].
|
144 |
|
145 |
|
146 |
|