sanchit-gandhi HF staff commited on
Commit
969edfe
1 Parent(s): 31460c5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +152 -3
README.md CHANGED
@@ -1,3 +1,152 @@
1
- ---
2
- license: cc-by-nc-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ annotations_creators:
2
+ - expert-generated
3
+ language_creators:
4
+ - expert-generated
5
+ languages:
6
+ - en
7
+ licenses:
8
+ - cc-by-nc-nd-3-0
9
+ multilinguality:
10
+ - monolingual
11
+ size_categories:
12
+ - 10K<n<100K
13
+ source_datasets:
14
+ - original
15
+ task_categories:
16
+ - automatic-speech-recognition
17
+ task_ids:
18
+ - automatic-speech-recognition
19
+
20
+ # Dataset Card for tedlium
21
+
22
+ ## Table of Contents
23
+ - [Dataset Description](#dataset-description)
24
+ - [Dataset Summary](#dataset-summary)
25
+ - [Supported Tasks](#supported-tasks-and-leaderboards)
26
+ - [Languages](#languages)
27
+ - [Dataset Structure](#dataset-structure)
28
+ - [Data Instances](#data-instances)
29
+ - [Data Fields](#data-instances)
30
+ - [Data Splits](#data-instances)
31
+ - [Dataset Creation](#dataset-creation)
32
+ - [Curation Rationale](#curation-rationale)
33
+ - [Source Data](#source-data)
34
+ - [Annotations](#annotations)
35
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
36
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
37
+ - [Social Impact of Dataset](#social-impact-of-dataset)
38
+ - [Discussion of Biases](#discussion-of-biases)
39
+ - [Other Known Limitations](#other-known-limitations)
40
+ - [Additional Information](#additional-information)
41
+ - [Dataset Curators](#dataset-curators)
42
+ - [Licensing Information](#licensing-information)
43
+ - [Citation Information](#citation-information)
44
+
45
+ ## Dataset Description
46
+
47
+ - **Homepage:** [TED-LIUM homepage](https://www.openslr.org/7/)
48
+ - **Repository:** [Needs More Information]
49
+ - **Paper:** [TED-LIUM: an Automatic Speech Recognition dedicated corpus](https://aclanthology.org/L12-1405/)
50
+ - **Leaderboard:** [Paperswithcode Leaderboard](https://paperswithcode.com/sota/speech-recognition-on-tedlium)
51
+ - **Point of Contact:** [Sanchit Gandhi](mailto:sanchit@huggingface.co)
52
+
53
+ ### Dataset Summary
54
+
55
+ The TED-LIUM corpus is English-language TED talks, with transcriptions, sampled at 16kHz. It contains about 118 hours of speech.
56
+
57
+ ### Supported Tasks and Leaderboards
58
+
59
+ - `automatic-speech-recognition`: The dataset can be used to train a model for Automatic Speech Recognition (ASR). The model is presented with an audio file and asked to transcribe the audio file to written text. The most common evaluation metric is the word error rate (WER). The task has an active leaderboard which can be found at https://paperswithcode.com/sota/speech-recognition-on-tedlium that ranks models based on their WER.
60
+
61
+ ### Languages
62
+
63
+ The audio and transcriptions are in English, as per the TED talks at http://www.ted.com.
64
+
65
+ ## Dataset Structure
66
+
67
+ ### Data Instances
68
+
69
+ TODO
70
+
71
+ ### Data Fields
72
+
73
+ - gender: an integer value corresponding to the gender of the speaker.
74
+ - id: unique id of the data sample.
75
+ - speaker_id: unique id of the speaker. The same speaker id can be found for multiple data samples.
76
+ - speech: A dictionary containing the path to the downloaded audio file, the decoded audio array, and the sampling rate. Note that when accessing the audio column: `dataset[0]["audio"]` the audio file is automatically decoded and resampled to `dataset.features["audio"].sampling_rate`. Decoding and resampling of a large number of audio files might take a significant amount of time. Thus it is important to first query the sample index before the "audio" column, i.e. `dataset[0]["audio"]` should always be preferred over `dataset["audio"][0]`.
77
+ - text: the transcription of the audio file.
78
+
79
+ ### Data Splits
80
+
81
+ The data is split into a training, validation and test set.
82
+
83
+ | Split | Examples |
84
+ |------------|----------|
85
+ | Train | 56,803 |
86
+ | Validation | 591 |
87
+ | Test | 1,469 |
88
+
89
+
90
+ ## Dataset Creation
91
+
92
+ ### Curation Rationale
93
+
94
+ TED-LIUM was built during [The International Workshop on Spoken Language Trans- lation (IWSLT) 2011 Evaluation Campaign](https://aclanthology.org/2011.iwslt-evaluation.1/), an annual workshop focused on the automatic translation of public talks and included tracks for speech recognition, speech translation, text translation, and system combination. The corpus was entered
95
+
96
+ ### Source Data
97
+
98
+ #### Initial Data Collection and Normalization
99
+
100
+ The data was obtained from publicly availably TED talks at http://www.ted.com. Proper alignments between the speech and the transcribed text were generated using an in-house speaker segmentation and clustering tool (LIUM_SpkDiarization). Speech disfluencies (e.g. repetitions, hesitations, false starts) were treated in the following way: the repetitions were transcribed, the hesitations were mapped to a specific filler word and the false starts were not taken into account. For full details on the data collection and processing, refer to the [TED-LIUM paper](https://aclanthology.org/L12-1405/).
101
+
102
+ #### Who are the source language producers?
103
+
104
+ [Needs More Information]
105
+
106
+ ### Annotations
107
+
108
+ #### Annotation process
109
+
110
+ [Needs More Information]
111
+
112
+ #### Who are the annotators?
113
+
114
+ [Needs More Information]
115
+
116
+ ### Personal and Sensitive Information
117
+
118
+ [Needs More Information]
119
+
120
+ ## Considerations for Using the Data
121
+
122
+ ### Social Impact of Dataset
123
+
124
+ [Needs More Information]
125
+
126
+ ### Discussion of Biases
127
+
128
+ [Needs More Information]
129
+
130
+ ### Other Known Limitations
131
+
132
+ [Needs More Information]
133
+
134
+ ## Additional Information
135
+
136
+ ### Dataset Curators
137
+
138
+ [Needs More Information]
139
+
140
+ ### Licensing Information
141
+
142
+ Licensed under Creative Commons BY-NC-ND 3.0 (http://creativecommons.org/licenses/by-nc-nd/3.0/deed.en).
143
+
144
+ ### Citation Information
145
+
146
+ @inproceedings{rousseau2012tedlium,
147
+ title={TED-LIUM: an Automatic Speech Recognition dedicated corpus},
148
+ author={Rousseau, Anthony and Del{\'e}glise, Paul and Est{\`e}ve, Yannick},
149
+ booktitle={Conference on Language Resources and Evaluation (LREC)},
150
+ pages={125--129},
151
+ year={2012}
152
+ }