baksEtech commited on
Commit
b3c7970
·
verified ·
1 Parent(s): 4c04c51

Upload folder using huggingface_hub

Browse files
Files changed (4) hide show
  1. .argilla/dataset.json +16 -0
  2. .argilla/settings.json +84 -0
  3. .argilla/version.json +3 -0
  4. README.md +143 -37
.argilla/dataset.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "id": "ddba69b2-8216-4c06-98de-2473e2601fc8",
3
+ "name": "stt_existing_dataset",
4
+ "guidelines": "These are some guidelines.",
5
+ "allow_extra_metadata": false,
6
+ "status": "ready",
7
+ "distribution": {
8
+ "strategy": "overlap",
9
+ "min_submitted": 1
10
+ },
11
+ "metadata": null,
12
+ "workspace_id": "919209bf-52f2-4b56-b917-c11b75aef0be",
13
+ "last_activity_at": "2025-04-10T13:52:28.749698",
14
+ "inserted_at": "2025-04-10T13:35:51.637807",
15
+ "updated_at": "2025-04-10T13:35:52.788453"
16
+ }
.argilla/settings.json ADDED
@@ -0,0 +1,84 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "guidelines": "These are some guidelines.",
3
+ "allow_extra_metadata": false,
4
+ "distribution": {
5
+ "strategy": "overlap",
6
+ "min_submitted": 1
7
+ },
8
+ "fields": [
9
+ {
10
+ "id": "0d272ab5-d388-48dd-b4aa-dff0e5a92ad8",
11
+ "name": "text",
12
+ "title": "Title Text",
13
+ "required": true,
14
+ "settings": {
15
+ "type": "text",
16
+ "use_markdown": false
17
+ },
18
+ "dataset_id": "ddba69b2-8216-4c06-98de-2473e2601fc8",
19
+ "inserted_at": "2025-04-10T13:35:52.144341",
20
+ "updated_at": "2025-04-10T13:35:52.144341"
21
+ }
22
+ ],
23
+ "questions": [
24
+ {
25
+ "id": "49477357-0a7a-4f12-9575-4231c0c89828",
26
+ "name": "topic",
27
+ "title": "Does the transcription refer to the given topics?",
28
+ "description": "Select the one that applies.",
29
+ "required": true,
30
+ "settings": {
31
+ "type": "label_selection",
32
+ "options": [
33
+ {
34
+ "value": "legal",
35
+ "text": "legal",
36
+ "description": null
37
+ },
38
+ {
39
+ "value": "entertainment",
40
+ "text": "entertainment",
41
+ "description": null
42
+ },
43
+ {
44
+ "value": "conversations",
45
+ "text": "conversations",
46
+ "description": null
47
+ }
48
+ ],
49
+ "visible_options": 3
50
+ },
51
+ "dataset_id": "ddba69b2-8216-4c06-98de-2473e2601fc8",
52
+ "inserted_at": "2025-04-10T13:35:52.369488",
53
+ "updated_at": "2025-04-10T13:35:52.369488"
54
+ },
55
+ {
56
+ "id": "c52c01fd-298d-40a0-9110-9c157f11177f",
57
+ "name": "gender",
58
+ "title": "What gender is the speaker?",
59
+ "description": "Select the one that applies.",
60
+ "required": true,
61
+ "settings": {
62
+ "type": "label_selection",
63
+ "options": [
64
+ {
65
+ "value": "male",
66
+ "text": "male",
67
+ "description": null
68
+ },
69
+ {
70
+ "value": "female",
71
+ "text": "female",
72
+ "description": null
73
+ }
74
+ ],
75
+ "visible_options": null
76
+ },
77
+ "dataset_id": "ddba69b2-8216-4c06-98de-2473e2601fc8",
78
+ "inserted_at": "2025-04-10T13:35:52.576435",
79
+ "updated_at": "2025-04-10T13:35:52.576435"
80
+ }
81
+ ],
82
+ "metadata": [],
83
+ "vectors": []
84
+ }
.argilla/version.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ {
2
+ "argilla": "2.8.0"
3
+ }
README.md CHANGED
@@ -1,39 +1,145 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: id
5
- dtype: string
6
- - name: status
7
- dtype: string
8
- - name: inserted_at
9
- dtype: timestamp[us]
10
- - name: updated_at
11
- dtype: timestamp[us]
12
- - name: _server_id
13
- dtype: string
14
- - name: text
15
- dtype: string
16
- - name: topic.responses
17
- sequence: string
18
- - name: topic.responses.users
19
- sequence: string
20
- - name: topic.responses.status
21
- sequence: string
22
- - name: gender.responses
23
- sequence: string
24
- - name: gender.responses.users
25
- sequence: string
26
- - name: gender.responses.status
27
- sequence: string
28
- splits:
29
- - name: train
30
- num_bytes: 151539
31
- num_examples: 100
32
- download_size: 103009
33
- dataset_size: 151539
34
- configs:
35
- - config_name: default
36
- data_files:
37
- - split: train
38
- path: data/train-*
39
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - rlfh
4
+ - argilla
5
+ - human-feedback
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  ---
7
+
8
+ # Dataset Card for stt_existing_dataset
9
+
10
+
11
+
12
+
13
+
14
+
15
+
16
+ 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).
17
+
18
+
19
+ ## Using this dataset with Argilla
20
+
21
+ To load with Argilla, you'll just need to install Argilla as `pip install argilla --upgrade` and then use the following code:
22
+
23
+ ```python
24
+ import argilla as rg
25
+
26
+ ds = rg.Dataset.from_hub("baksEtech/stt_existing_dataset", settings="auto")
27
+ ```
28
+
29
+ This will load the settings and records from the dataset repository and push them to you Argilla server for exploration and annotation.
30
+
31
+ ## Using this dataset with `datasets`
32
+
33
+ To load the records of this dataset with `datasets`, you'll just need to install `datasets` as `pip install datasets --upgrade` and then use the following code:
34
+
35
+ ```python
36
+ from datasets import load_dataset
37
+
38
+ ds = load_dataset("baksEtech/stt_existing_dataset")
39
+ ```
40
+
41
+ This will only load the records of the dataset, but not the Argilla settings.
42
+
43
+ ## Dataset Structure
44
+
45
+ This dataset repo contains:
46
+
47
+ * Dataset records in a format compatible with HuggingFace `datasets`. These records will be loaded automatically when using `rg.Dataset.from_hub` and can be loaded independently using the `datasets` library via `load_dataset`.
48
+ * The [annotation guidelines](#annotation-guidelines) that have been used for building and curating the dataset, if they've been defined in Argilla.
49
+ * A dataset configuration folder conforming to the Argilla dataset format in `.argilla`.
50
+
51
+ The dataset is created in Argilla with: **fields**, **questions**, **suggestions**, **metadata**, **vectors**, and **guidelines**.
52
+
53
+ ### Fields
54
+
55
+ 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.
56
+
57
+ | Field Name | Title | Type | Required |
58
+ | ---------- | ----- | ---- | -------- |
59
+ | text | Title Text | text | True |
60
+
61
+
62
+ ### Questions
63
+
64
+ 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.
65
+
66
+ | Question Name | Title | Type | Required | Description | Values/Labels |
67
+ | ------------- | ----- | ---- | -------- | ----------- | ------------- |
68
+ | topic | Does the transcription refer to the given topics? | label_selection | True | Select the one that applies. | ['legal', 'entertainment', 'conversations'] |
69
+ | gender | What gender is the speaker? | label_selection | True | Select the one that applies. | ['male', 'female'] |
70
+
71
+
72
+ <!-- check length of metadata properties -->
73
+
74
+
75
+
76
+
77
+ ### Data Splits
78
+
79
+ The dataset contains a single split, which is `train`.
80
+
81
+ ## Dataset Creation
82
+
83
+ ### Curation Rationale
84
+
85
+ [More Information Needed]
86
+
87
+ ### Source Data
88
+
89
+ #### Initial Data Collection and Normalization
90
+
91
+ [More Information Needed]
92
+
93
+ #### Who are the source language producers?
94
+
95
+ [More Information Needed]
96
+
97
+ ### Annotations
98
+
99
+ #### Annotation guidelines
100
+
101
+ These are some guidelines.
102
+
103
+ #### Annotation process
104
+
105
+ [More Information Needed]
106
+
107
+ #### Who are the annotators?
108
+
109
+ [More Information Needed]
110
+
111
+ ### Personal and Sensitive Information
112
+
113
+ [More Information Needed]
114
+
115
+ ## Considerations for Using the Data
116
+
117
+ ### Social Impact of Dataset
118
+
119
+ [More Information Needed]
120
+
121
+ ### Discussion of Biases
122
+
123
+ [More Information Needed]
124
+
125
+ ### Other Known Limitations
126
+
127
+ [More Information Needed]
128
+
129
+ ## Additional Information
130
+
131
+ ### Dataset Curators
132
+
133
+ [More Information Needed]
134
+
135
+ ### Licensing Information
136
+
137
+ [More Information Needed]
138
+
139
+ ### Citation Information
140
+
141
+ [More Information Needed]
142
+
143
+ ### Contributions
144
+
145
+ [More Information Needed]