Commit
•
8316aea
1
Parent(s):
94fd0f2
Update README.md
Browse files
README.md
CHANGED
@@ -16,8 +16,7 @@ source_datasets:
|
|
16 |
- original
|
17 |
task_categories:
|
18 |
- automatic-speech-recognition
|
19 |
-
task_ids:
|
20 |
-
- automatic-speech-recognition
|
21 |
---
|
22 |
|
23 |
# Dataset Card for tedlium
|
@@ -55,7 +54,7 @@ task_ids:
|
|
55 |
|
56 |
### Dataset Summary
|
57 |
|
58 |
-
The TED-LIUM corpus is English-language TED talks, with transcriptions, sampled at 16kHz.
|
59 |
|
60 |
|
61 |
### Example
|
@@ -73,8 +72,6 @@ audio_input = tedlium["train"][0]["audio"] # first decoded audio sample
|
|
73 |
transcription = tedlium["train"][0]["text"] # first transcription
|
74 |
```
|
75 |
|
76 |
-
Note that the processing of the TEDLIUM dataset requires pydub for audio segmentation. Instructions on how to download pydub can be found at https://github.com/jiaaro/pydub#installation.
|
77 |
-
|
78 |
### Supported Tasks and Leaderboards
|
79 |
|
80 |
- `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.
|
@@ -195,15 +192,11 @@ Licensed under Creative Commons BY-NC-ND 3.0 (http://creativecommons.org/license
|
|
195 |
### Citation Information
|
196 |
|
197 |
```
|
198 |
-
@inproceedings{
|
199 |
-
title={
|
200 |
-
author={
|
201 |
-
booktitle={
|
202 |
-
pages={
|
203 |
-
year={
|
204 |
-
organization={IEEE}
|
205 |
}
|
206 |
-
```
|
207 |
-
|
208 |
-
### Contributions
|
209 |
-
Thanks to [@sanchit-gandhi](https://github.com/sanchit-gandhi) for adding this dataset.
|
|
|
16 |
- original
|
17 |
task_categories:
|
18 |
- automatic-speech-recognition
|
19 |
+
task_ids: []
|
|
|
20 |
---
|
21 |
|
22 |
# Dataset Card for tedlium
|
|
|
54 |
|
55 |
### Dataset Summary
|
56 |
|
57 |
+
The TED-LIUM corpus is English-language TED talks, with transcriptions, sampled at 16kHz. The three releases of the corpus range from 118 to 452 hours of transcribed speech data.
|
58 |
|
59 |
|
60 |
### Example
|
|
|
72 |
transcription = tedlium["train"][0]["text"] # first transcription
|
73 |
```
|
74 |
|
|
|
|
|
75 |
### Supported Tasks and Leaderboards
|
76 |
|
77 |
- `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.
|
|
|
192 |
### Citation Information
|
193 |
|
194 |
```
|
195 |
+
@inproceedings{rousseau2012tedlium,
|
196 |
+
title={TED-LIUM: an Automatic Speech Recognition dedicated corpus},
|
197 |
+
author={Rousseau, Anthony and Del{\'e}glise, Paul and Est{\`e}ve, Yannick},
|
198 |
+
booktitle={Conference on Language Resources and Evaluation (LREC)},
|
199 |
+
pages={125--129},
|
200 |
+
year={2012}
|
|
|
201 |
}
|
202 |
+
```
|
|
|
|
|
|