Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
@@ -4,75 +4,6 @@ tags:
|
|
4 |
- rlfh
|
5 |
- argilla
|
6 |
- human-feedback
|
7 |
-
configs:
|
8 |
-
- config_name: default
|
9 |
-
data_files:
|
10 |
-
- split: train
|
11 |
-
path: data/train-*
|
12 |
-
dataset_info:
|
13 |
-
features:
|
14 |
-
- name: id
|
15 |
-
dtype: string
|
16 |
-
- name: _server_id
|
17 |
-
dtype: string
|
18 |
-
- name: text
|
19 |
-
dtype: string
|
20 |
-
- name: label.responses
|
21 |
-
sequence: string
|
22 |
-
- name: label.responses.users
|
23 |
-
sequence: string
|
24 |
-
- name: label.suggestion
|
25 |
-
dtype: string
|
26 |
-
- name: label.suggestion.score
|
27 |
-
dtype: 'null'
|
28 |
-
- name: label.suggestion.agent
|
29 |
-
dtype: 'null'
|
30 |
-
- name: topics.suggestion
|
31 |
-
sequence: string
|
32 |
-
- name: topics.suggestion.score
|
33 |
-
sequence: float64
|
34 |
-
- name: topics.suggestion.agent
|
35 |
-
dtype: 'null'
|
36 |
-
- name: ranking.suggestion
|
37 |
-
sequence: string
|
38 |
-
- name: ranking.suggestion.score
|
39 |
-
dtype: 'null'
|
40 |
-
- name: ranking.suggestion.agent
|
41 |
-
dtype: 'null'
|
42 |
-
- name: span.suggestion.agent
|
43 |
-
dtype: 'null'
|
44 |
-
- name: vector
|
45 |
-
sequence: float64
|
46 |
-
- name: span.suggestion
|
47 |
-
list:
|
48 |
-
- name: end
|
49 |
-
dtype: int64
|
50 |
-
- name: label
|
51 |
-
dtype: string
|
52 |
-
- name: start
|
53 |
-
dtype: int64
|
54 |
-
- name: comment.suggestion.agent
|
55 |
-
dtype: 'null'
|
56 |
-
- name: rating.suggestion.agent
|
57 |
-
dtype: 'null'
|
58 |
-
- name: span.suggestion.score
|
59 |
-
dtype: 'null'
|
60 |
-
- name: rating.suggestion
|
61 |
-
dtype: int64
|
62 |
-
- name: rating.suggestion.score
|
63 |
-
dtype: 'null'
|
64 |
-
- name: comment.suggestion.score
|
65 |
-
dtype: float64
|
66 |
-
- name: comment_score
|
67 |
-
dtype: float64
|
68 |
-
- name: comment.suggestion
|
69 |
-
dtype: string
|
70 |
-
splits:
|
71 |
-
- name: train
|
72 |
-
num_bytes: 1185
|
73 |
-
num_examples: 4
|
74 |
-
download_size: 16225
|
75 |
-
dataset_size: 1185
|
76 |
---
|
77 |
|
78 |
# Dataset Card for test-argilla-dataset
|
@@ -83,7 +14,7 @@ dataset_info:
|
|
83 |
|
84 |
|
85 |
|
86 |
-
This dataset has been created with [Argilla](https://argilla-io
|
87 |
|
88 |
|
89 |
## Using this dataset with Argilla
|
@@ -96,7 +27,7 @@ import argilla as rg
|
|
96 |
ds = rg.Dataset.from_hub("burtenshaw/test-argilla-dataset")
|
97 |
```
|
98 |
|
99 |
-
This will load the settings and records from the dataset repository and push them to
|
100 |
|
101 |
## Using this dataset with `datasets`
|
102 |
|
@@ -108,7 +39,7 @@ from datasets import load_dataset
|
|
108 |
ds = load_dataset("burtenshaw/test-argilla-dataset")
|
109 |
```
|
110 |
|
111 |
-
This will only load the records of the dataset, but not the Argilla settings.
|
112 |
|
113 |
## Dataset Structure
|
114 |
|
@@ -122,7 +53,7 @@ The dataset is created in Argilla with: **fields**, **questions**, **suggestions
|
|
122 |
|
123 |
### Fields
|
124 |
|
125 |
-
The **fields** are the
|
126 |
|
127 |
| Field Name | Title | Type | Required | Markdown |
|
128 |
| ---------- | ----- | ---- | -------- | -------- |
|
@@ -147,7 +78,7 @@ The **questions** are the questions that will be asked to the annotators. They c
|
|
147 |
|
148 |
### Metadata
|
149 |
|
150 |
-
The **metadata** is a dictionary that can be used to provide additional information about the dataset record.
|
151 |
| Metadata Name | Title | Type | Values | Visible for Annotators |
|
152 |
| ------------- | ----- | ---- | ------ | ---------------------- |
|
153 |
| comment_score | comment_score | | None - None | True |
|
@@ -171,11 +102,11 @@ An example of a dataset instance in Argilla looks as follows:
|
|
171 |
|
172 |
```json
|
173 |
{
|
174 |
-
"_server_id": "
|
175 |
"fields": {
|
176 |
"text": "Hello World, how are you?"
|
177 |
},
|
178 |
-
"id": "
|
179 |
"metadata": {},
|
180 |
"responses": {
|
181 |
"label": [
|
@@ -211,12 +142,12 @@ While the same record in HuggingFace `datasets` looks as follows:
|
|
211 |
|
212 |
```json
|
213 |
{
|
214 |
-
"_server_id": "
|
215 |
"comment.suggestion": null,
|
216 |
"comment.suggestion.agent": null,
|
217 |
"comment.suggestion.score": null,
|
218 |
"comment_score": null,
|
219 |
-
"id": "
|
220 |
"label.responses": [
|
221 |
"positive"
|
222 |
],
|
|
|
4 |
- rlfh
|
5 |
- argilla
|
6 |
- human-feedback
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
---
|
8 |
|
9 |
# Dataset Card for test-argilla-dataset
|
|
|
14 |
|
15 |
|
16 |
|
17 |
+
This dataset has been created with [Argilla](https://github.com/argilla-io/argilla). As shown in the sections below, this dataset can be loaded into your Argilla server as explained in [Load with Argilla](#load-with-argilla), or used directly with the `datasets` library in [Load with `datasets`](#load-with-datasets).
|
18 |
|
19 |
|
20 |
## Using this dataset with Argilla
|
|
|
27 |
ds = rg.Dataset.from_hub("burtenshaw/test-argilla-dataset")
|
28 |
```
|
29 |
|
30 |
+
This will load the settings and records from the dataset repository and push them to you Argilla server for exploration and annotation.
|
31 |
|
32 |
## Using this dataset with `datasets`
|
33 |
|
|
|
39 |
ds = load_dataset("burtenshaw/test-argilla-dataset")
|
40 |
```
|
41 |
|
42 |
+
This will only load the records of the dataset, but not the Argilla settings.
|
43 |
|
44 |
## Dataset Structure
|
45 |
|
|
|
53 |
|
54 |
### Fields
|
55 |
|
56 |
+
The **fields** are the features or text of a dataset's records. For example, the 'text' column of a text classification dataset of the 'prompt' column of an instruction following dataset.
|
57 |
|
58 |
| Field Name | Title | Type | Required | Markdown |
|
59 |
| ---------- | ----- | ---- | -------- | -------- |
|
|
|
78 |
|
79 |
### Metadata
|
80 |
|
81 |
+
The **metadata** is a dictionary that can be used to provide additional information about the dataset record.
|
82 |
| Metadata Name | Title | Type | Values | Visible for Annotators |
|
83 |
| ------------- | ----- | ---- | ------ | ---------------------- |
|
84 |
| comment_score | comment_score | | None - None | True |
|
|
|
102 |
|
103 |
```json
|
104 |
{
|
105 |
+
"_server_id": "40e489d9-9175-4fc0-bd17-52e7987a415b",
|
106 |
"fields": {
|
107 |
"text": "Hello World, how are you?"
|
108 |
},
|
109 |
+
"id": "dced7d10-90e5-4199-89a6-5df41b637ebf",
|
110 |
"metadata": {},
|
111 |
"responses": {
|
112 |
"label": [
|
|
|
142 |
|
143 |
```json
|
144 |
{
|
145 |
+
"_server_id": "40e489d9-9175-4fc0-bd17-52e7987a415b",
|
146 |
"comment.suggestion": null,
|
147 |
"comment.suggestion.agent": null,
|
148 |
"comment.suggestion.score": null,
|
149 |
"comment_score": null,
|
150 |
+
"id": "dced7d10-90e5-4199-89a6-5df41b637ebf",
|
151 |
"label.responses": [
|
152 |
"positive"
|
153 |
],
|