andreagasparini commited on
Commit
3f0baad
1 Parent(s): 56f131e

Create new file

Browse files
Files changed (1) hide show
  1. librispeech_train_other_only.py +152 -0
librispeech_train_other_only.py ADDED
@@ -0,0 +1,152 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2021 The TensorFlow Datasets Authors and the HuggingFace Datasets Authors.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ # Lint as: python3
17
+ """Librispeech automatic speech recognition dataset."""
18
+
19
+
20
+ import os
21
+
22
+ import datasets
23
+ from datasets.tasks import AutomaticSpeechRecognition
24
+
25
+
26
+ _CITATION = """\
27
+ @inproceedings{panayotov2015librispeech,
28
+ title={Librispeech: an ASR corpus based on public domain audio books},
29
+ author={Panayotov, Vassil and Chen, Guoguo and Povey, Daniel and Khudanpur, Sanjeev},
30
+ booktitle={Acoustics, Speech and Signal Processing (ICASSP), 2015 IEEE International Conference on},
31
+ pages={5206--5210},
32
+ year={2015},
33
+ organization={IEEE}
34
+ }
35
+ """
36
+
37
+ _DESCRIPTION = """\
38
+ LibriSpeech is a corpus of approximately 1000 hours of read English speech with sampling rate of 16 kHz,
39
+ prepared by Vassil Panayotov with the assistance of Daniel Povey. The data is derived from read
40
+ audiobooks from the LibriVox project, and has been carefully segmented and aligned.87
41
+ """
42
+
43
+ _URL = "http://www.openslr.org/12"
44
+ _DL_URL = "http://www.openslr.org/resources/12/"
45
+
46
+
47
+ _DL_URLS = {
48
+ "other": {
49
+ "train.500": _DL_URL + "train-other-500.tar.gz",
50
+ },
51
+ "all": {
52
+ "train.500": _DL_URL + "train-other-500.tar.gz",
53
+ },
54
+ }
55
+
56
+
57
+ class LibrispeechASRConfig(datasets.BuilderConfig):
58
+ """BuilderConfig for LibriSpeechASR."""
59
+
60
+ def __init__(self, **kwargs):
61
+ """
62
+ Args:
63
+ data_dir: `string`, the path to the folder containing the files in the
64
+ downloaded .tar
65
+ citation: `string`, citation for the data set
66
+ url: `string`, url for information about the data set
67
+ **kwargs: keyword arguments forwarded to super.
68
+ """
69
+ super(LibrispeechASRConfig, self).__init__(version=datasets.Version("2.1.0", ""), **kwargs)
70
+
71
+
72
+ class LibrispeechASR(datasets.GeneratorBasedBuilder):
73
+ """Librispeech dataset."""
74
+
75
+ DEFAULT_WRITER_BATCH_SIZE = 256
76
+ DEFAULT_CONFIG_NAME = "all"
77
+ BUILDER_CONFIGS = [LibrispeechASRConfig(name="other", description="'Other', more challenging, speech.")]
78
+
79
+ def _info(self):
80
+ return datasets.DatasetInfo(
81
+ description=_DESCRIPTION,
82
+ features=datasets.Features(
83
+ {
84
+ "file": datasets.Value("string"),
85
+ "audio": datasets.Audio(sampling_rate=16_000),
86
+ "text": datasets.Value("string"),
87
+ "speaker_id": datasets.Value("int64"),
88
+ "chapter_id": datasets.Value("int64"),
89
+ "id": datasets.Value("string"),
90
+ }
91
+ ),
92
+ supervised_keys=("file", "text"),
93
+ homepage=_URL,
94
+ citation=_CITATION,
95
+ task_templates=[AutomaticSpeechRecognition(audio_column="audio", transcription_column="text")],
96
+ )
97
+
98
+ def _split_generators(self, dl_manager):
99
+ archive_path = dl_manager.download(_DL_URLS[self.config.name])
100
+ # (Optional) In non-streaming mode, we can extract the archive locally to have actual local audio files:
101
+ local_extracted_archive = dl_manager.extract(archive_path) if not dl_manager.is_streaming else {}
102
+
103
+ if self.config.name == "other" or self.config.name == "all":
104
+ train_splits = [
105
+ datasets.SplitGenerator(
106
+ name="train.500",
107
+ gen_kwargs={
108
+ "local_extracted_archive": local_extracted_archive.get("train.500"),
109
+ "files": dl_manager.iter_archive(archive_path["train.500"]),
110
+ },
111
+ )
112
+ ]
113
+
114
+ return train_splits
115
+
116
+ def _generate_examples(self, files, local_extracted_archive):
117
+ """Generate examples from a LibriSpeech archive_path."""
118
+ key = 0
119
+ audio_data = {}
120
+ transcripts = []
121
+ for path, f in files:
122
+ if path.endswith(".flac"):
123
+ id_ = path.split("/")[-1][: -len(".flac")]
124
+ audio_data[id_] = f.read()
125
+ elif path.endswith(".trans.txt"):
126
+ for line in f:
127
+ if line:
128
+ line = line.decode("utf-8").strip()
129
+ id_, transcript = line.split(" ", 1)
130
+ audio_file = f"{id_}.flac"
131
+ speaker_id, chapter_id = [int(el) for el in id_.split("-")[:2]]
132
+ audio_file = (
133
+ os.path.join(local_extracted_archive, audio_file)
134
+ if local_extracted_archive
135
+ else audio_file
136
+ )
137
+ transcripts.append(
138
+ {
139
+ "id": id_,
140
+ "speaker_id": speaker_id,
141
+ "chapter_id": chapter_id,
142
+ "file": audio_file,
143
+ "text": transcript,
144
+ }
145
+ )
146
+ if audio_data and len(audio_data) == len(transcripts):
147
+ for transcript in transcripts:
148
+ audio = {"path": transcript["file"], "bytes": audio_data[transcript["id"]]}
149
+ yield key, {"audio": audio, **transcript}
150
+ key += 1
151
+ audio_data = {}
152
+ transcripts = []