albertvillanova HF staff commited on
Commit
31db0b5
1 Parent(s): 4ca4d06

Add dataset card

Browse files
Files changed (1) hide show
  1. README.md +180 -0
README.md ADDED
@@ -0,0 +1,180 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ annotations_creators:
3
+ - found
4
+ language_creators:
5
+ - found
6
+ languages:
7
+ - ca
8
+ licenses:
9
+ - cc-by-nc-4.0
10
+ multilinguality:
11
+ - monolingual
12
+ pretty_name: TV3Parla
13
+ size_categories:
14
+ - 100K<n<1M
15
+ source_datasets:
16
+ - original
17
+ task_categories:
18
+ - sequence-modeling
19
+ - speech-processing
20
+ task_ids:
21
+ - language-modeling
22
+ - automatic-speech-recognition
23
+ ---
24
+
25
+ # Dataset Card for TV3Parla
26
+
27
+ ## Table of Contents
28
+ - [Table of Contents](#table-of-contents)
29
+ - [Dataset Description](#dataset-description)
30
+ - [Dataset Summary](#dataset-summary)
31
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
32
+ - [Languages](#languages)
33
+ - [Dataset Structure](#dataset-structure)
34
+ - [Data Instances](#data-instances)
35
+ - [Data Fields](#data-fields)
36
+ - [Data Splits](#data-splits)
37
+ - [Dataset Creation](#dataset-creation)
38
+ - [Curation Rationale](#curation-rationale)
39
+ - [Source Data](#source-data)
40
+ - [Annotations](#annotations)
41
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
42
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
43
+ - [Social Impact of Dataset](#social-impact-of-dataset)
44
+ - [Discussion of Biases](#discussion-of-biases)
45
+ - [Other Known Limitations](#other-known-limitations)
46
+ - [Additional Information](#additional-information)
47
+ - [Dataset Curators](#dataset-curators)
48
+ - [Licensing Information](#licensing-information)
49
+ - [Citation Information](#citation-information)
50
+ - [Contributions](#contributions)
51
+
52
+ ## Dataset Description
53
+
54
+ - **Homepage:** https://collectivat.cat/asr#tv3parla
55
+ - **Repository:**
56
+ - **Paper:** [Building an Open Source Automatic Speech Recognition System for Catalan](https://www.isca-speech.org/archive/iberspeech_2018/kulebi18_iberspeech.html)
57
+ - **Point of Contact:** [Col·lectivaT](mailto:info@collectivat.cat)
58
+
59
+ ### Dataset Summary
60
+
61
+ This corpus includes 240 hours of Catalan speech from broadcast material.
62
+ The details of segmentation, data processing and also model training are explained in Külebi, Öktem; 2018.
63
+ The content is owned by Corporació Catalana de Mitjans Audiovisuals, SA (CCMA);
64
+ we processed their material and hereby making it available under their terms of use.
65
+
66
+ This project was supported by the Softcatalà Association.
67
+
68
+ ### Supported Tasks and Leaderboards
69
+
70
+ The dataset can be used for:
71
+ - Language Modeling.
72
+ - Automatic Speech Recognition (ASR) transcribes utterances into words.
73
+
74
+ ### Languages
75
+
76
+ The dataset is in Catalan (`ca`).
77
+
78
+ ## Dataset Structure
79
+
80
+ ### Data Instances
81
+
82
+ ```
83
+ {
84
+ 'path': 'tv3_0.3/wav/train/5662515_1492531876710/5662515_1492531876710_120.180_139.020.wav',
85
+ 'audio': {'path': 'tv3_0.3/wav/train/5662515_1492531876710/5662515_1492531876710_120.180_139.020.wav',
86
+ 'array': array([-0.01168823, 0.01229858, 0.02819824, ..., 0.015625 ,
87
+ 0.01525879, 0.0145874 ]),
88
+ 'sampling_rate': 16000},
89
+ 'text': 'algunes montoneres que que et feien anar ben col·locat i el vent també hi jugava una mica de paper bufava vent de cantó alguns cops o de cul i el pelotón el vent el porta molt malament hi havia molts nervis'
90
+ }
91
+ ```
92
+
93
+ ### Data Fields
94
+
95
+ - `path` (str): Path to the audio file.
96
+ - `audio` (dict): A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling
97
+ rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and
98
+ resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might
99
+ take a significant amount of time. Thus, it is important to first query the sample index before the `"audio"` column,
100
+ *i.e.* `dataset[0]["audio"]` should **always** be preferred over `dataset["audio"][0]`.
101
+ - `text` (str): Transcription of the audio file.
102
+
103
+ ### Data Splits
104
+
105
+ The dataset is split into "train" and "test".
106
+
107
+ | | train | test |
108
+ |:--------------|-------:|-----:|
109
+ | # of examples | 159242 | 2220 |
110
+
111
+ ## Dataset Creation
112
+
113
+ ### Curation Rationale
114
+
115
+ [More Information Needed]
116
+
117
+ ### Source Data
118
+
119
+ #### Initial Data Collection and Normalization
120
+
121
+ [More Information Needed]
122
+
123
+ #### Who are the source language producers?
124
+
125
+ [More Information Needed]
126
+
127
+ ### Annotations
128
+
129
+ #### Annotation process
130
+
131
+ [More Information Needed]
132
+
133
+ #### Who are the annotators?
134
+
135
+ [More Information Needed]
136
+
137
+ ### Personal and Sensitive Information
138
+
139
+ [More Information Needed]
140
+
141
+ ## Considerations for Using the Data
142
+
143
+ ### Social Impact of Dataset
144
+
145
+ [More Information Needed]
146
+
147
+ ### Discussion of Biases
148
+
149
+ [More Information Needed]
150
+
151
+ ### Other Known Limitations
152
+
153
+ [More Information Needed]
154
+
155
+ ## Additional Information
156
+
157
+ ### Dataset Curators
158
+
159
+ [More Information Needed]
160
+
161
+ ### Licensing Information
162
+
163
+ [Creative Commons Attribution-NonCommercial 4.0 International](https://creativecommons.org/licenses/by-nc/4.0/).
164
+
165
+ ### Citation Information
166
+
167
+ ```
168
+ @inproceedings{kulebi18_iberspeech,
169
+ author={Baybars Külebi and Alp Öktem},
170
+ title={{Building an Open Source Automatic Speech Recognition System for Catalan}},
171
+ year=2018,
172
+ booktitle={Proc. IberSPEECH 2018},
173
+ pages={25--29},
174
+ doi={10.21437/IberSPEECH.2018-6}
175
+ }
176
+ ```
177
+
178
+ ### Contributions
179
+
180
+ Thanks to [@albertvillanova](https://github.com/albertvillanova) for adding this dataset.