albertvillanova HF staff commited on
Commit
ca57af9
1 Parent(s): 9de6fa3

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +191 -0
README.md ADDED
@@ -0,0 +1,191 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - ca
8
+ licenses:
9
+ - cc-by-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: ParlamentParla
13
+ size_categories:
14
+ clean:
15
+ - 10K<n<100K
16
+ other:
17
+ - 100K<n<1M
18
+ source_datasets:
19
+ - original
20
+ task_categories:
21
+ - sequence-modeling
22
+ - speech-processing
23
+ task_ids:
24
+ - language-modeling
25
+ - automatic-speech-recognition
26
+ - speaker-identification
27
+ ---
28
+
29
+ # Dataset Card for ParlamentParla
30
+
31
+ ## Table of Contents
32
+ - [Table of Contents](#table-of-contents)
33
+ - [Dataset Description](#dataset-description)
34
+ - [Dataset Summary](#dataset-summary)
35
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
36
+ - [Languages](#languages)
37
+ - [Dataset Structure](#dataset-structure)
38
+ - [Data Instances](#data-instances)
39
+ - [Data Fields](#data-fields)
40
+ - [Data Splits](#data-splits)
41
+ - [Dataset Creation](#dataset-creation)
42
+ - [Curation Rationale](#curation-rationale)
43
+ - [Source Data](#source-data)
44
+ - [Annotations](#annotations)
45
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
46
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
47
+ - [Social Impact of Dataset](#social-impact-of-dataset)
48
+ - [Discussion of Biases](#discussion-of-biases)
49
+ - [Other Known Limitations](#other-known-limitations)
50
+ - [Additional Information](#additional-information)
51
+ - [Dataset Curators](#dataset-curators)
52
+ - [Licensing Information](#licensing-information)
53
+ - [Citation Information](#citation-information)
54
+ - [Contributions](#contributions)
55
+
56
+ ## Dataset Description
57
+
58
+ - **Homepage:** https://zenodo.org/record/5541827
59
+ - **Repository:** https://github.com/CollectivaT-dev/ParlamentParla
60
+ - **Paper:**
61
+ - **Point of Contact:** [Col·lectivaT](mailto:info@collectivat.cat)
62
+
63
+ ### Dataset Summary
64
+
65
+ This is the ParlamentParla speech corpus for Catalan prepared by Col·lectivaT. The audio segments were extracted from recordings the Catalan Parliament (Parlament de Catalunya) plenary sessions, which took place between 2007/07/11 - 2018/07/17. We aligned the transcriptions with the recordings and extracted the corpus. The content belongs to the Catalan Parliament and the data is released conforming their terms of use.
66
+
67
+ Preparation of this corpus was partly supported by the Department of Culture of the Catalan autonomous government, and the v2.0 was supported by the Barcelona Supercomputing Center, within the framework of the project AINA of the Departament de Polítiques Digitals.
68
+
69
+ As of v2.0 the corpus is separated into 211 hours of clean and 400 hours of other quality segments. Furthermore, each speech segment is tagged with its speaker and each speaker with their gender. The statistics are detailed in the readme file.
70
+
71
+ ### Supported Tasks and Leaderboards
72
+
73
+ The dataset can be used for:
74
+ - Language Modeling.
75
+ - Automatic Speech Recognition (ASR) transcribes utterances into words.
76
+ - Speaker Identification (SI) classifies each utterance for its speaker identity as a multi-class classification, where speakers are in the same predefined set for both training and testing.
77
+
78
+ ### Languages
79
+
80
+ The dataset is in Catalan (`ca`).
81
+
82
+ ## Dataset Structure
83
+
84
+ ### Data Instances
85
+
86
+ ```
87
+ {
88
+ 'path': 'clean_train/c/c/ccca4790a55aba3e6bcf_63.88_74.06.wav'
89
+ 'audio': {
90
+ 'path': 'clean_train/c/c/ccca4790a55aba3e6bcf_63.88_74.06.wav',
91
+ 'array': array([-6.10351562e-05, -6.10351562e-05, -1.22070312e-04, ...,
92
+ -1.22070312e-04, 0.00000000e+00, -3.05175781e-05]),
93
+ 'sampling_rate': 16000
94
+ },
95
+ 'speaker_id': 167,
96
+ 'sentence': "alguns d'ells avui aquí presents un agraïment a aquells que mantenen viva la memòria aquest acte de reparació i dignitat és",
97
+ 'gender': 0,
98
+ 'duration': 10.18
99
+ }
100
+ ```
101
+
102
+ ### Data Fields
103
+
104
+ - `path` (str): The path to the audio file.
105
+ - `audio` (dict): A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling
106
+ rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and
107
+ resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might
108
+ take a significant amount of time. Thus, it is important to first query the sample index before the `"audio"` column,
109
+ *i.e.* `dataset[0]["audio"]` should **always** be preferred over `dataset["audio"][0]`.
110
+ - `speaker_id` (int): The speaker ID.
111
+ - `sentence` (str): The sentence the user was prompted to speak.
112
+ - `gender` (ClassLabel): The gender of the speaker (0: 'F', 1: 'M').
113
+ - `duration` (float): Duration of the speech.
114
+
115
+ ### Data Splits
116
+
117
+ The dataset is split in: "train", "validation" and "test".
118
+
119
+ ## Dataset Creation
120
+
121
+ ### Curation Rationale
122
+
123
+ [More Information Needed]
124
+
125
+ ### Source Data
126
+
127
+ #### Initial Data Collection and Normalization
128
+
129
+ [More Information Needed]
130
+
131
+ #### Who are the source language producers?
132
+
133
+ [More Information Needed]
134
+
135
+ ### Annotations
136
+
137
+ #### Annotation process
138
+
139
+ [More Information Needed]
140
+
141
+ #### Who are the annotators?
142
+
143
+ [More Information Needed]
144
+
145
+ ### Personal and Sensitive Information
146
+
147
+ [More Information Needed]
148
+
149
+ ## Considerations for Using the Data
150
+
151
+ ### Social Impact of Dataset
152
+
153
+ [More Information Needed]
154
+
155
+ ### Discussion of Biases
156
+
157
+ [More Information Needed]
158
+
159
+ ### Other Known Limitations
160
+
161
+ [More Information Needed]
162
+
163
+ ## Additional Information
164
+
165
+ ### Dataset Curators
166
+
167
+ [More Information Needed]
168
+
169
+ ### Licensing Information
170
+
171
+ [Creative Commons Attribution 4.0 International](https://creativecommons.org/licenses/by/4.0/).
172
+
173
+ ### Citation Information
174
+
175
+ ```
176
+ @dataset{kulebi_baybars_2021_5541827,
177
+ author = {Külebi, Baybars},
178
+ title = {{ParlamentParla - Speech corpus of Catalan
179
+ Parliamentary sessions}},
180
+ month = oct,
181
+ year = 2021,
182
+ publisher = {Zenodo},
183
+ version = {v2.0},
184
+ doi = {10.5281/zenodo.5541827},
185
+ url = {https://doi.org/10.5281/zenodo.5541827}
186
+ }
187
+ ```
188
+
189
+ ### Contributions
190
+
191
+ Thanks to [@albertvillanova](https://github.com/albertvillanova) for adding this dataset.