Sidd2899 commited on
Commit
5ed2e29
1 Parent(s): f7ec6b0

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +146 -0
README.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: LibriSpeech
3
+ annotations_creators:
4
+ - expert-generated
5
+ language_creators:
6
+ - crowdsourced
7
+ - expert-generated
8
+ language:
9
+ - en
10
+ license:
11
+ - cc-by-4.0
12
+ multilinguality:
13
+ - monolingual
14
+ paperswithcode_id: librispeech-1
15
+ size_categories:
16
+ - 100K<n<1M
17
+ source_datasets:
18
+ - original
19
+ task_categories:
20
+ - automatic-speech-recognition
21
+ - audio-classification
22
+ task_ids:
23
+ - speaker-identification
24
+ ---
25
+ # Dataset Card for librispeech_asr
26
+ ## Table of Contents
27
+ - [Dataset Description](#dataset-description)
28
+ - [Dataset Summary](#dataset-summary)
29
+ - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
30
+ - [Languages](#languages)
31
+ - [Dataset Structure](#dataset-structure)
32
+ - [Data Instances](#data-instances)
33
+ - [Data Fields](#data-fields)
34
+ - [Data Splits](#data-splits)
35
+ - [Dataset Creation](#dataset-creation)
36
+ - [Curation Rationale](#curation-rationale)
37
+ - [Source Data](#source-data)
38
+ - [Annotations](#annotations)
39
+ - [Personal and Sensitive Information](#personal-and-sensitive-information)
40
+ - [Considerations for Using the Data](#considerations-for-using-the-data)
41
+ - [Social Impact of Dataset](#social-impact-of-dataset)
42
+ - [Discussion of Biases](#discussion-of-biases)
43
+ - [Other Known Limitations](#other-known-limitations)
44
+ - [Additional Information](#additional-information)
45
+ - [Dataset Curators](#dataset-curators)
46
+ - [Licensing Information](#licensing-information)
47
+ - [Citation Information](#citation-information)
48
+ - [Contributions](#contributions)
49
+ ## Dataset Description
50
+ - **Homepage:** [LibriSpeech ASR corpus](http://www.openslr.org/12)
51
+ - **Repository:** [Needs More Information]
52
+ - **Paper:** [LibriSpeech: An ASR Corpus Based On Public Domain Audio Books](https://www.danielpovey.com/files/2015_icassp_librispeech.pdf)
53
+ - **Leaderboard:** [The 🤗 Speech Bench](https://huggingface.co/spaces/huggingface/hf-speech-bench)
54
+ - **Point of Contact:** [Daniel Povey](mailto:dpovey@gmail.com)
55
+ ### Dataset Summary
56
+ LibriSpeech is a corpus of approximately 1000 hours of 16kHz read English speech, prepared by Vassil Panayotov with the assistance of Daniel Povey. The data is derived from read audiobooks from the LibriVox project, and has been carefully segmented and aligned.
57
+ ### Supported Tasks and Leaderboards
58
+ - `automatic-speech-recognition`, `audio-speaker-identification`: 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 Hugging Face leaderboard which can be found at https://huggingface.co/spaces/huggingface/hf-speech-bench. The leaderboard ranks models uploaded to the Hub based on their WER. An external leaderboard at https://paperswithcode.com/sota/speech-recognition-on-librispeech-test-clean ranks the latest models from research and academia.
59
+ ### Languages
60
+ The audio is in English. There are two configurations: `clean` and `other`.
61
+ The speakers in the corpus were ranked according to the WER of the transcripts of a model trained on
62
+ a different dataset, and were divided roughly in the middle,
63
+ with the lower-WER speakers designated as "clean" and the higher WER speakers designated as "other".
64
+ ## Dataset Structure
65
+ ### Data Instances
66
+ A typical data point comprises the path to the audio file, usually called `file` and its transcription, called `text`. Some additional information about the speaker and the passage which contains the transcription is provided.
67
+ ```
68
+ {'chapter_id': 141231,
69
+ 'file': '/home/siddhant/.cache/huggingface/datasets/downloads/extracted/b7ded9969e09942ab65313e691e6fc2e12066192ee8527e21d634aca128afbe2/dev_clean/1272/141231/1272-141231-0000.flac',
70
+ 'audio': {'path': '/home/siddhant/.cache/huggingface/datasets/downloads/extracted/b7ded9969e09942ab65313e691e6fc2e12066192ee8527e21d634aca128afbe2/dev_clean/1272/141231/1272-141231-0000.flac',
71
+ 'array': array([-0.00048828, -0.00018311, -0.00137329, ..., 0.00079346,
72
+ 0.00091553, 0.00085449], dtype=float32),
73
+ 'sampling_rate': 16000},
74
+ 'id': '1272-141231-0000',
75
+ 'speaker_id': 1272,
76
+ 'text': 'A MAN SAID TO THE UNIVERSE SIR I EXIST'}
77
+ ```
78
+ ### Data Fields
79
+ - file: A path to the downloaded audio file in .flac format.
80
+ - audio: 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]`.
81
+ - text: the transcription of the audio file.
82
+ - id: unique id of the data sample.
83
+ - speaker_id: unique id of the speaker. The same speaker id can be found for multiple data samples.
84
+ - chapter_id: id of the audiobook chapter which includes the transcription.
85
+ ### Data Splits
86
+ The size of the corpus makes it impractical, or at least inconvenient
87
+ for some users, to distribute it as a single large archive. Thus the
88
+ training portion of the corpus is split into three subsets, with approximate size 100, 360 and 500 hours respectively.
89
+ A simple automatic
90
+ procedure was used to select the audio in the first two sets to be, on
91
+ average, of higher recording quality and with accents closer to US
92
+ English. An acoustic model was trained on WSJ’s si-84 data subset
93
+ and was used to recognize the audio in the corpus, using a bigram
94
+ LM estimated on the text of the respective books. We computed the
95
+ Word Error Rate (WER) of this automatic transcript relative to our
96
+ reference transcripts obtained from the book texts.
97
+ The speakers in the corpus were ranked according to the WER of
98
+ the WSJ model’s transcripts, and were divided roughly in the middle,
99
+ with the lower-WER speakers designated as "clean" and the higher-WER speakers designated as "other".
100
+ For "clean", the data is split into train, validation, and test set. The train set is further split into train.100 and train.360
101
+ respectively accounting for 100h and 360h of the training data.
102
+ For "other", the data is split into train, validation, and test set. The train set contains approximately 500h of recorded speech.
103
+ | | Train.500 | Train.360 | Train.100 | Valid | Test |
104
+ | ----- | ------ | ----- | ---- | ---- | ---- |
105
+ | clean | - | 104014 | 28539 | 2703 | 2620|
106
+ | other | 148688 | - | - | 2864 | 2939 |
107
+ ## Dataset Creation
108
+ ### Curation Rationale
109
+ [Needs More Information]
110
+ ### Source Data
111
+ #### Initial Data Collection and Normalization
112
+ [Needs More Information]
113
+ #### Who are the source language producers?
114
+ [Needs More Information]
115
+ ### Annotations
116
+ #### Annotation process
117
+ [Needs More Information]
118
+ #### Who are the annotators?
119
+ [Needs More Information]
120
+ ### Personal and Sensitive Information
121
+ The dataset consists of people who have donated their voice online. You agree to not attempt to determine the identity of speakers in this dataset.
122
+ ## Considerations for Using the Data
123
+ ### Social Impact of Dataset
124
+ [More Information Needed]
125
+ ### Discussion of Biases
126
+ [More Information Needed]
127
+ ### Other Known Limitations
128
+ [Needs More Information]
129
+ ## Additional Information
130
+ ### Dataset Curators
131
+ The dataset was initially created by Vassil Panayotov, Guoguo Chen, Daniel Povey, and Sanjeev Khudanpur.
132
+ ### Licensing Information
133
+ [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
134
+ ### Citation Information
135
+ ```
136
+ @inproceedings{panayotov2015librispeech,
137
+ title={Myspeech: an ASR corpus based on public domain audio books},
138
+ author={Panayotov, Vassil and Chen, Guoguo and Povey, Daniel and Khudanpur, Sanjeev},
139
+ booktitle={Acoustics, Speech and Signal Processing (ICASSP), 2015 IEEE International Conference on},
140
+ pages={5206--5210},
141
+ year={2015},
142
+ organization={IEEE}
143
+ }
144
+ ```
145
+ ### Contributions
146
+ Thanks to [@patrickvonplaten](https://github.com/patrickvonplaten) for adding this dataset.