patrickvonplaten commited on
Commit
ea95d21
1 Parent(s): 94c5eeb

Training in progress, step 400

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
1
+ checkpoint-*/
added_tokens.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ {
2
+ "</s>": 31,
3
+ "<s>": 30
4
+ }
config.json ADDED
@@ -0,0 +1,108 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/wav2vec2-large-lv60",
3
+ "activation_dropout": 0.0,
4
+ "adapter_kernel_size": 3,
5
+ "adapter_stride": 2,
6
+ "add_adapter": false,
7
+ "apply_spec_augment": true,
8
+ "architectures": [
9
+ "Wav2Vec2ForCTC"
10
+ ],
11
+ "attention_dropout": 0.0,
12
+ "bos_token_id": 1,
13
+ "classifier_proj_size": 256,
14
+ "codevector_dim": 768,
15
+ "contrastive_logits_temperature": 0.1,
16
+ "conv_bias": true,
17
+ "conv_dim": [
18
+ 512,
19
+ 512,
20
+ 512,
21
+ 512,
22
+ 512,
23
+ 512,
24
+ 512
25
+ ],
26
+ "conv_kernel": [
27
+ 10,
28
+ 3,
29
+ 3,
30
+ 3,
31
+ 3,
32
+ 2,
33
+ 2
34
+ ],
35
+ "conv_stride": [
36
+ 5,
37
+ 2,
38
+ 2,
39
+ 2,
40
+ 2,
41
+ 2,
42
+ 2
43
+ ],
44
+ "ctc_loss_reduction": "mean",
45
+ "ctc_zero_infinity": false,
46
+ "diversity_loss_weight": 0.1,
47
+ "do_stable_layer_norm": true,
48
+ "eos_token_id": 2,
49
+ "feat_extract_activation": "gelu",
50
+ "feat_extract_dropout": 0.0,
51
+ "feat_extract_norm": "layer",
52
+ "feat_proj_dropout": 0.0,
53
+ "feat_quantizer_dropout": 0.0,
54
+ "final_dropout": 0.0,
55
+ "hidden_act": "gelu",
56
+ "hidden_dropout": 0.0,
57
+ "hidden_dropout_prob": 0.1,
58
+ "hidden_size": 1024,
59
+ "initializer_range": 0.02,
60
+ "intermediate_size": 4096,
61
+ "layer_norm_eps": 1e-05,
62
+ "layerdrop": 0.0,
63
+ "mask_feature_length": 10,
64
+ "mask_feature_min_masks": 0,
65
+ "mask_feature_prob": 0.0,
66
+ "mask_time_length": 10,
67
+ "mask_time_min_masks": 2,
68
+ "mask_time_prob": 0.05,
69
+ "model_type": "wav2vec2",
70
+ "num_adapter_layers": 3,
71
+ "num_attention_heads": 16,
72
+ "num_codevector_groups": 2,
73
+ "num_codevectors_per_group": 320,
74
+ "num_conv_pos_embedding_groups": 16,
75
+ "num_conv_pos_embeddings": 128,
76
+ "num_feat_extract_layers": 7,
77
+ "num_hidden_layers": 24,
78
+ "num_negatives": 100,
79
+ "output_hidden_size": 1024,
80
+ "pad_token_id": 29,
81
+ "proj_codevector_dim": 768,
82
+ "tdnn_dilation": [
83
+ 1,
84
+ 2,
85
+ 3,
86
+ 1,
87
+ 1
88
+ ],
89
+ "tdnn_dim": [
90
+ 512,
91
+ 512,
92
+ 512,
93
+ 512,
94
+ 1500
95
+ ],
96
+ "tdnn_kernel": [
97
+ 5,
98
+ 3,
99
+ 3,
100
+ 1,
101
+ 1
102
+ ],
103
+ "torch_dtype": "float32",
104
+ "transformers_version": "4.22.0.dev0",
105
+ "use_weighted_layer_sum": false,
106
+ "vocab_size": 32,
107
+ "xvector_output_dim": 512
108
+ }
preprocessor_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "do_normalize": true,
3
+ "feature_extractor_type": "Wav2Vec2FeatureExtractor",
4
+ "feature_size": 1,
5
+ "padding_side": "right",
6
+ "padding_value": 0.0,
7
+ "return_attention_mask": true,
8
+ "sampling_rate": 16000
9
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c44ff249b0573e8f3b0573ec8073e3a7246759d93447fa9dc79654c9922fc8ab
3
+ size 1262029937
run.sh ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env bash
2
+ ## IMPORTANT: This script was stopped after 1.5 epochs (2400 steps)
3
+ ## because the training loss was exploding => the best checkpoint (2000 steps)
4
+ ## was then taken.
5
+ ## MAKE SURE TO DO HYPER-PARAMETER TUNING TO GET BETTER RESULTS
6
+ python -m torch.distributed.launch \
7
+ --nproc_per_node 2 run_speech_recognition_ctc.py \
8
+ --dataset_name="edinburghcstr/ami" \
9
+ --model_name_or_path="facebook/wav2vec2-large-lv60" \
10
+ --dataset_config_name="ihm" \
11
+ --train_split_name="train" \
12
+ --eval_split_name="validation" \
13
+ --output_dir="./" \
14
+ --preprocessing_num_workers="16" \
15
+ --overwrite_output_dir \
16
+ --num_train_epochs="3" \
17
+ --per_device_train_batch_size="16" \
18
+ --per_device_eval_batch_size="32" \
19
+ --gradient_accumulation_steps="1" \
20
+ --learning_rate="5e-5" \
21
+ --warmup_steps="500" \
22
+ --evaluation_strategy="steps" \
23
+ --text_column_name="text" \
24
+ --min_duration_in_seconds="0.25" \
25
+ --save_steps="400" \
26
+ --eval_steps="1000" \
27
+ --logging_steps="1" \
28
+ --layerdrop="0.0" \
29
+ --save_total_limit="3" \
30
+ --freeze_feature_encoder \
31
+ --gradient_checkpointing \
32
+ --chars_to_ignore , ? . ! - \; \: \" “ % ‘ ” \
33
+ --fp16 \
34
+ --group_by_length \
35
+ --push_to_hub \
36
+ --do_eval \
37
+ --do_train --do_eval
run_speech_recognition_ctc.py ADDED
@@ -0,0 +1,770 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ # coding=utf-8
3
+ # Copyright 2021 The HuggingFace Inc. team. All rights reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+
16
+ """ Fine-tuning a 🤗 Transformers CTC model for automatic speech recognition"""
17
+
18
+ import functools
19
+ import json
20
+ import logging
21
+ import os
22
+ import re
23
+ import sys
24
+ import warnings
25
+ from dataclasses import dataclass, field
26
+ from typing import Dict, List, Optional, Union
27
+
28
+ import datasets
29
+ import numpy as np
30
+ import torch
31
+ from datasets import DatasetDict, load_dataset
32
+
33
+ import evaluate
34
+ import transformers
35
+ from transformers import (
36
+ AutoConfig,
37
+ AutoFeatureExtractor,
38
+ AutoModelForCTC,
39
+ AutoProcessor,
40
+ AutoTokenizer,
41
+ HfArgumentParser,
42
+ Trainer,
43
+ TrainingArguments,
44
+ Wav2Vec2Processor,
45
+ set_seed,
46
+ )
47
+ from transformers.trainer_utils import get_last_checkpoint, is_main_process
48
+ from transformers.utils import check_min_version, send_example_telemetry
49
+ from transformers.utils.versions import require_version
50
+
51
+
52
+ # Will error if the minimal version of Transformers is not installed. Remove at your own risks.
53
+ check_min_version("4.22.0.dev0")
54
+
55
+ require_version("datasets>=1.18.0", "To fix: pip install -r examples/pytorch/speech-recognition/requirements.txt")
56
+
57
+
58
+ logger = logging.getLogger(__name__)
59
+
60
+
61
+ def list_field(default=None, metadata=None):
62
+ return field(default_factory=lambda: default, metadata=metadata)
63
+
64
+
65
+ @dataclass
66
+ class ModelArguments:
67
+ """
68
+ Arguments pertaining to which model/config/tokenizer we are going to fine-tune from.
69
+ """
70
+
71
+ model_name_or_path: str = field(
72
+ metadata={"help": "Path to pretrained model or model identifier from huggingface.co/models"}
73
+ )
74
+ tokenizer_name_or_path: Optional[str] = field(
75
+ default=None,
76
+ metadata={"help": "Path to pretrained tokenizer or tokenizer identifier from huggingface.co/models"},
77
+ )
78
+ cache_dir: Optional[str] = field(
79
+ default=None,
80
+ metadata={"help": "Where do you want to store the pretrained models downloaded from huggingface.co"},
81
+ )
82
+ freeze_feature_encoder: bool = field(
83
+ default=True, metadata={"help": "Whether to freeze the feature encoder layers of the model."}
84
+ )
85
+ attention_dropout: float = field(
86
+ default=0.0, metadata={"help": "The dropout ratio for the attention probabilities."}
87
+ )
88
+ activation_dropout: float = field(
89
+ default=0.0, metadata={"help": "The dropout ratio for activations inside the fully connected layer."}
90
+ )
91
+ feat_proj_dropout: float = field(default=0.0, metadata={"help": "The dropout ratio for the projected features."})
92
+ hidden_dropout: float = field(
93
+ default=0.0,
94
+ metadata={
95
+ "help": "The dropout probability for all fully connected layers in the embeddings, encoder, and pooler."
96
+ },
97
+ )
98
+ final_dropout: float = field(
99
+ default=0.0,
100
+ metadata={"help": "The dropout probability for the final projection layer."},
101
+ )
102
+ mask_time_prob: float = field(
103
+ default=0.05,
104
+ metadata={
105
+ "help": (
106
+ "Probability of each feature vector along the time axis to be chosen as the start of the vector"
107
+ "span to be masked. Approximately ``mask_time_prob * sequence_length // mask_time_length`` feature"
108
+ "vectors will be masked along the time axis."
109
+ )
110
+ },
111
+ )
112
+ mask_time_length: int = field(
113
+ default=10,
114
+ metadata={"help": "Length of vector span to mask along the time axis."},
115
+ )
116
+ mask_feature_prob: float = field(
117
+ default=0.0,
118
+ metadata={
119
+ "help": (
120
+ "Probability of each feature vector along the feature axis to be chosen as the start of the vectorspan"
121
+ " to be masked. Approximately ``mask_feature_prob * sequence_length // mask_feature_length`` feature"
122
+ " bins will be masked along the time axis."
123
+ )
124
+ },
125
+ )
126
+ mask_feature_length: int = field(
127
+ default=10,
128
+ metadata={"help": "Length of vector span to mask along the feature axis."},
129
+ )
130
+ layerdrop: float = field(default=0.0, metadata={"help": "The LayerDrop probability."})
131
+ ctc_loss_reduction: Optional[str] = field(
132
+ default="mean", metadata={"help": "The way the ctc loss should be reduced. Should be one of 'mean' or 'sum'."}
133
+ )
134
+
135
+
136
+ @dataclass
137
+ class DataTrainingArguments:
138
+ """
139
+ Arguments pertaining to what data we are going to input our model for training and eval.
140
+
141
+ Using `HfArgumentParser` we can turn this class
142
+ into argparse arguments to be able to specify them on
143
+ the command line.
144
+ """
145
+
146
+ dataset_name: str = field(
147
+ metadata={"help": "The configuration name of the dataset to use (via the datasets library)."}
148
+ )
149
+ dataset_config_name: str = field(
150
+ default=None, metadata={"help": "The configuration name of the dataset to use (via the datasets library)."}
151
+ )
152
+ train_split_name: str = field(
153
+ default="train+validation",
154
+ metadata={
155
+ "help": (
156
+ "The name of the training data set split to use (via the datasets library). Defaults to "
157
+ "'train+validation'"
158
+ )
159
+ },
160
+ )
161
+ eval_split_name: str = field(
162
+ default="test",
163
+ metadata={
164
+ "help": "The name of the evaluation data set split to use (via the datasets library). Defaults to 'test'"
165
+ },
166
+ )
167
+ audio_column_name: str = field(
168
+ default="audio",
169
+ metadata={"help": "The name of the dataset column containing the audio data. Defaults to 'audio'"},
170
+ )
171
+ text_column_name: str = field(
172
+ default="text",
173
+ metadata={"help": "The name of the dataset column containing the text data. Defaults to 'text'"},
174
+ )
175
+ overwrite_cache: bool = field(
176
+ default=False, metadata={"help": "Overwrite the cached preprocessed datasets or not."}
177
+ )
178
+ preprocessing_num_workers: Optional[int] = field(
179
+ default=None,
180
+ metadata={"help": "The number of processes to use for the preprocessing."},
181
+ )
182
+ max_train_samples: Optional[int] = field(
183
+ default=None,
184
+ metadata={
185
+ "help": (
186
+ "For debugging purposes or quicker training, truncate the number of training examples to this "
187
+ "value if set."
188
+ )
189
+ },
190
+ )
191
+ max_eval_samples: Optional[int] = field(
192
+ default=None,
193
+ metadata={
194
+ "help": (
195
+ "For debugging purposes or quicker training, truncate the number of validation examples to this "
196
+ "value if set."
197
+ )
198
+ },
199
+ )
200
+ chars_to_ignore: Optional[List[str]] = list_field(
201
+ default=None,
202
+ metadata={"help": "A list of characters to remove from the transcripts."},
203
+ )
204
+ eval_metrics: List[str] = list_field(
205
+ default=["wer"],
206
+ metadata={"help": "A list of metrics the model should be evaluated on. E.g. `'wer cer'`"},
207
+ )
208
+ max_duration_in_seconds: float = field(
209
+ default=20.0,
210
+ metadata={
211
+ "help": (
212
+ "Filter audio files that are longer than `max_duration_in_seconds` seconds to"
213
+ " 'max_duration_in_seconds`"
214
+ )
215
+ },
216
+ )
217
+ min_duration_in_seconds: float = field(
218
+ default=0.0, metadata={"help": "Filter audio files that are shorter than `min_duration_in_seconds` seconds"}
219
+ )
220
+ preprocessing_only: bool = field(
221
+ default=False,
222
+ metadata={
223
+ "help": (
224
+ "Whether to only do data preprocessing and skip training. This is especially useful when data"
225
+ " preprocessing errors out in distributed training due to timeout. In this case, one should run the"
226
+ " preprocessing in a non-distributed setup with `preprocessing_only=True` so that the cached datasets"
227
+ " can consequently be loaded in distributed training"
228
+ )
229
+ },
230
+ )
231
+ use_auth_token: bool = field(
232
+ default=False,
233
+ metadata={
234
+ "help": (
235
+ "If :obj:`True`, will use the token generated when running"
236
+ ":obj:`huggingface-cli login` as HTTP bearer authorization for remote files."
237
+ )
238
+ },
239
+ )
240
+ unk_token: str = field(
241
+ default="[UNK]",
242
+ metadata={"help": "The unk token for the tokenizer"},
243
+ )
244
+ pad_token: str = field(
245
+ default="[PAD]",
246
+ metadata={"help": "The padding token for the tokenizer"},
247
+ )
248
+ word_delimiter_token: str = field(
249
+ default="|",
250
+ metadata={"help": "The word delimiter token for the tokenizer"},
251
+ )
252
+ phoneme_language: Optional[str] = field(
253
+ default=None,
254
+ metadata={
255
+ "help": (
256
+ "The target language that should be used be"
257
+ " passed to the tokenizer for tokenization. Note that"
258
+ " this is only relevant if the model classifies the"
259
+ " input audio to a sequence of phoneme sequences."
260
+ )
261
+ },
262
+ )
263
+
264
+
265
+ @dataclass
266
+ class DataCollatorCTCWithPadding:
267
+ """
268
+ Data collator that will dynamically pad the inputs received.
269
+ Args:
270
+ processor (:class:`~transformers.AutoProcessor`)
271
+ The processor used for proccessing the data.
272
+ padding (:obj:`bool`, :obj:`str` or :class:`~transformers.tokenization_utils_base.PaddingStrategy`, `optional`, defaults to :obj:`True`):
273
+ Select a strategy to pad the returned sequences (according to the model's padding side and padding index)
274
+ among:
275
+ * :obj:`True` or :obj:`'longest'`: Pad to the longest sequence in the batch (or no padding if only a single
276
+ sequence if provided).
277
+ * :obj:`'max_length'`: Pad to a maximum length specified with the argument :obj:`max_length` or to the
278
+ maximum acceptable input length for the model if that argument is not provided.
279
+ * :obj:`False` or :obj:`'do_not_pad'` (default): No padding (i.e., can output a batch with sequences of
280
+ different lengths).
281
+ max_length (:obj:`int`, `optional`):
282
+ Maximum length of the ``input_values`` of the returned list and optionally padding length (see above).
283
+ max_length_labels (:obj:`int`, `optional`):
284
+ Maximum length of the ``labels`` returned list and optionally padding length (see above).
285
+ pad_to_multiple_of (:obj:`int`, `optional`):
286
+ If set will pad the sequence to a multiple of the provided value.
287
+ This is especially useful to enable the use of Tensor Cores on NVIDIA hardware with compute capability >=
288
+ 7.5 (Volta).
289
+ """
290
+
291
+ processor: AutoProcessor
292
+ padding: Union[bool, str] = "longest"
293
+ pad_to_multiple_of: Optional[int] = None
294
+ pad_to_multiple_of_labels: Optional[int] = None
295
+
296
+ def __call__(self, features: List[Dict[str, Union[List[int], torch.Tensor]]]) -> Dict[str, torch.Tensor]:
297
+ # split inputs and labels since they have to be of different lenghts and need
298
+ # different padding methods
299
+ input_features = [{"input_values": feature["input_values"]} for feature in features]
300
+ label_features = [{"input_ids": feature["labels"]} for feature in features]
301
+
302
+ batch = self.processor.pad(
303
+ input_features,
304
+ padding=self.padding,
305
+ pad_to_multiple_of=self.pad_to_multiple_of,
306
+ return_tensors="pt",
307
+ )
308
+
309
+ labels_batch = self.processor.pad(
310
+ labels=label_features,
311
+ padding=self.padding,
312
+ pad_to_multiple_of=self.pad_to_multiple_of_labels,
313
+ return_tensors="pt",
314
+ )
315
+
316
+ # replace padding with -100 to ignore loss correctly
317
+ labels = labels_batch["input_ids"].masked_fill(labels_batch.attention_mask.ne(1), -100)
318
+
319
+ batch["labels"] = labels
320
+
321
+ return batch
322
+
323
+
324
+ def create_vocabulary_from_data(
325
+ datasets: DatasetDict,
326
+ word_delimiter_token: Optional[str] = None,
327
+ unk_token: Optional[str] = None,
328
+ pad_token: Optional[str] = None,
329
+ ):
330
+ # Given training and test labels create vocabulary
331
+ def extract_all_chars(batch):
332
+ all_text = " ".join(batch["target_text"])
333
+ vocab = list(set(all_text))
334
+ return {"vocab": [vocab], "all_text": [all_text]}
335
+
336
+ vocabs = datasets.map(
337
+ extract_all_chars,
338
+ batched=True,
339
+ batch_size=-1,
340
+ keep_in_memory=True,
341
+ remove_columns=datasets["train"].column_names,
342
+ )
343
+
344
+ # take union of all unique characters in each dataset
345
+ vocab_set = functools.reduce(
346
+ lambda vocab_1, vocab_2: set(vocab_1["vocab"][0]) | set(vocab_2["vocab"][0]), vocabs.values()
347
+ )
348
+
349
+ vocab_dict = {v: k for k, v in enumerate(sorted(list(vocab_set)))}
350
+
351
+ # replace white space with delimiter token
352
+ if word_delimiter_token is not None:
353
+ vocab_dict[word_delimiter_token] = vocab_dict[" "]
354
+ del vocab_dict[" "]
355
+
356
+ # add unk and pad token
357
+ if unk_token is not None:
358
+ vocab_dict[unk_token] = len(vocab_dict)
359
+
360
+ if pad_token is not None:
361
+ vocab_dict[pad_token] = len(vocab_dict)
362
+
363
+ return vocab_dict
364
+
365
+
366
+ def main():
367
+ # See all possible arguments in src/transformers/training_args.py
368
+ # or by passing the --help flag to this script.
369
+ # We now keep distinct sets of args, for a cleaner separation of concerns.
370
+
371
+ parser = HfArgumentParser((ModelArguments, DataTrainingArguments, TrainingArguments))
372
+ if len(sys.argv) == 2 and sys.argv[1].endswith(".json"):
373
+ # If we pass only one argument to the script and it's the path to a json file,
374
+ # let's parse it to get our arguments.
375
+ model_args, data_args, training_args = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1]))
376
+ else:
377
+ model_args, data_args, training_args = parser.parse_args_into_dataclasses()
378
+
379
+ # Sending telemetry. Tracking the example usage helps us better allocate resources to maintain them. The
380
+ # information sent is the one passed as arguments along with your Python/PyTorch versions.
381
+ send_example_telemetry("run_speech_recognition_ctc", model_args, data_args)
382
+
383
+ # Detecting last checkpoint.
384
+ last_checkpoint = None
385
+ if os.path.isdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir:
386
+ last_checkpoint = get_last_checkpoint(training_args.output_dir)
387
+ if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0:
388
+ raise ValueError(
389
+ f"Output directory ({training_args.output_dir}) already exists and is not empty. "
390
+ "Use --overwrite_output_dir to overcome."
391
+ )
392
+ elif last_checkpoint is not None:
393
+ logger.info(
394
+ f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change "
395
+ "the `--output_dir` or add `--overwrite_output_dir` to train from scratch."
396
+ )
397
+
398
+ # Setup logging
399
+ logging.basicConfig(
400
+ format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
401
+ datefmt="%m/%d/%Y %H:%M:%S",
402
+ handlers=[logging.StreamHandler(sys.stdout)],
403
+ )
404
+ logger.setLevel(logging.INFO if is_main_process(training_args.local_rank) else logging.WARN)
405
+
406
+ # Log on each process the small summary:
407
+ logger.warning(
408
+ f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}"
409
+ f"distributed training: {bool(training_args.local_rank != -1)}, 16-bits training: {training_args.fp16}"
410
+ )
411
+ # Set the verbosity to info of the Transformers logger (on main process only):
412
+ if is_main_process(training_args.local_rank):
413
+ transformers.utils.logging.set_verbosity_info()
414
+ logger.info("Training/evaluation parameters %s", training_args)
415
+
416
+ # Set seed before initializing model.
417
+ set_seed(training_args.seed)
418
+
419
+ # 1. First, let's load the dataset
420
+ raw_datasets = DatasetDict()
421
+
422
+ if training_args.do_train:
423
+ raw_datasets["train"] = load_dataset(
424
+ data_args.dataset_name,
425
+ data_args.dataset_config_name,
426
+ split=data_args.train_split_name,
427
+ use_auth_token=data_args.use_auth_token,
428
+ )
429
+
430
+ if data_args.audio_column_name not in raw_datasets["train"].column_names:
431
+ raise ValueError(
432
+ f"--audio_column_name '{data_args.audio_column_name}' not found in dataset '{data_args.dataset_name}'."
433
+ " Make sure to set `--audio_column_name` to the correct audio column - one of"
434
+ f" {', '.join(raw_datasets['train'].column_names)}."
435
+ )
436
+
437
+ if data_args.text_column_name not in raw_datasets["train"].column_names:
438
+ raise ValueError(
439
+ f"--text_column_name {data_args.text_column_name} not found in dataset '{data_args.dataset_name}'. "
440
+ "Make sure to set `--text_column_name` to the correct text column - one of "
441
+ f"{', '.join(raw_datasets['train'].column_names)}."
442
+ )
443
+
444
+ if data_args.max_train_samples is not None:
445
+ raw_datasets["train"] = raw_datasets["train"].select(range(data_args.max_train_samples))
446
+
447
+ if training_args.do_eval:
448
+ raw_datasets["eval"] = load_dataset(
449
+ data_args.dataset_name,
450
+ data_args.dataset_config_name,
451
+ split=data_args.eval_split_name,
452
+ use_auth_token=data_args.use_auth_token,
453
+ )
454
+
455
+ if data_args.max_eval_samples is not None:
456
+ raw_datasets["eval"] = raw_datasets["eval"].select(range(data_args.max_eval_samples))
457
+
458
+ # 2. We remove some special characters from the datasets
459
+ # that make training complicated and do not help in transcribing the speech
460
+ # E.g. characters, such as `,` and `.` do not really have an acoustic characteristic
461
+ # that could be easily picked up by the model
462
+ chars_to_ignore_regex = (
463
+ f'[{"".join(data_args.chars_to_ignore)}]' if data_args.chars_to_ignore is not None else None
464
+ )
465
+ text_column_name = data_args.text_column_name
466
+
467
+ def remove_special_characters(batch):
468
+ if chars_to_ignore_regex is not None:
469
+ batch["target_text"] = re.sub(chars_to_ignore_regex, "", batch[text_column_name]).lower() + " "
470
+ else:
471
+ batch["target_text"] = batch[text_column_name].lower() + " "
472
+ return batch
473
+
474
+ with training_args.main_process_first(desc="dataset map special characters removal"):
475
+ raw_datasets = raw_datasets.map(
476
+ remove_special_characters,
477
+ remove_columns=[text_column_name],
478
+ desc="remove special characters from datasets",
479
+ )
480
+
481
+ # save special tokens for tokenizer
482
+ word_delimiter_token = data_args.word_delimiter_token
483
+ unk_token = data_args.unk_token
484
+ pad_token = data_args.pad_token
485
+
486
+ # 3. Next, let's load the config as we might need it to create
487
+ # the tokenizer
488
+ # load config
489
+ config = AutoConfig.from_pretrained(
490
+ model_args.model_name_or_path, cache_dir=model_args.cache_dir, use_auth_token=data_args.use_auth_token
491
+ )
492
+
493
+ # 4. Next, if no tokenizer file is defined,
494
+ # we create the vocabulary of the model by extracting all unique characters from
495
+ # the training and evaluation datasets
496
+ # We need to make sure that only first rank saves vocabulary
497
+ # make sure all processes wait until vocab is created
498
+ tokenizer_name_or_path = model_args.tokenizer_name_or_path
499
+ tokenizer_kwargs = {}
500
+ if tokenizer_name_or_path is None:
501
+ # save vocab in training output dir
502
+ tokenizer_name_or_path = training_args.output_dir
503
+
504
+ vocab_file = os.path.join(tokenizer_name_or_path, "vocab.json")
505
+
506
+ with training_args.main_process_first():
507
+ if training_args.overwrite_output_dir and os.path.isfile(vocab_file):
508
+ try:
509
+ os.remove(vocab_file)
510
+ except OSError:
511
+ # in shared file-systems it might be the case that
512
+ # two processes try to delete the vocab file at the some time
513
+ pass
514
+
515
+ with training_args.main_process_first(desc="dataset map vocabulary creation"):
516
+ if not os.path.isfile(vocab_file):
517
+ os.makedirs(tokenizer_name_or_path, exist_ok=True)
518
+ vocab_dict = create_vocabulary_from_data(
519
+ raw_datasets,
520
+ word_delimiter_token=word_delimiter_token,
521
+ unk_token=unk_token,
522
+ pad_token=pad_token,
523
+ )
524
+
525
+ # save vocab dict to be loaded into tokenizer
526
+ with open(vocab_file, "w") as file:
527
+ json.dump(vocab_dict, file)
528
+
529
+ # if tokenizer has just been created
530
+ # it is defined by `tokenizer_class` if present in config else by `model_type`
531
+ tokenizer_kwargs = {
532
+ "config": config if config.tokenizer_class is not None else None,
533
+ "tokenizer_type": config.model_type if config.tokenizer_class is None else None,
534
+ "unk_token": unk_token,
535
+ "pad_token": pad_token,
536
+ "word_delimiter_token": word_delimiter_token,
537
+ }
538
+
539
+ # 5. Now we can instantiate the feature extractor, tokenizer and model
540
+ # Note for distributed training, the .from_pretrained methods guarantee that only
541
+ # one local process can concurrently download model & vocab.
542
+
543
+ # load feature_extractor and tokenizer
544
+ tokenizer = AutoTokenizer.from_pretrained(
545
+ tokenizer_name_or_path,
546
+ use_auth_token=data_args.use_auth_token,
547
+ **tokenizer_kwargs,
548
+ )
549
+ feature_extractor = AutoFeatureExtractor.from_pretrained(
550
+ model_args.model_name_or_path, cache_dir=model_args.cache_dir, use_auth_token=data_args.use_auth_token
551
+ )
552
+
553
+ # adapt config
554
+ config.update(
555
+ {
556
+ "feat_proj_dropout": model_args.feat_proj_dropout,
557
+ "attention_dropout": model_args.attention_dropout,
558
+ "hidden_dropout": model_args.hidden_dropout,
559
+ "final_dropout": model_args.final_dropout,
560
+ "mask_time_prob": model_args.mask_time_prob,
561
+ "mask_time_length": model_args.mask_time_length,
562
+ "mask_feature_prob": model_args.mask_feature_prob,
563
+ "mask_feature_length": model_args.mask_feature_length,
564
+ "gradient_checkpointing": training_args.gradient_checkpointing,
565
+ "layerdrop": model_args.layerdrop,
566
+ "ctc_loss_reduction": model_args.ctc_loss_reduction,
567
+ "pad_token_id": tokenizer.pad_token_id,
568
+ "vocab_size": len(tokenizer),
569
+ "activation_dropout": model_args.activation_dropout,
570
+ }
571
+ )
572
+
573
+ # create model
574
+ model = AutoModelForCTC.from_pretrained(
575
+ model_args.model_name_or_path,
576
+ cache_dir=model_args.cache_dir,
577
+ config=config,
578
+ use_auth_token=data_args.use_auth_token,
579
+ )
580
+
581
+ # freeze encoder
582
+ if model_args.freeze_feature_encoder:
583
+ model.freeze_feature_encoder()
584
+
585
+ # 6. Now we preprocess the datasets including loading the audio, resampling and normalization
586
+ # Thankfully, `datasets` takes care of automatically loading and resampling the audio,
587
+ # so that we just need to set the correct target sampling rate and normalize the input
588
+ # via the `feature_extractor`
589
+
590
+ # make sure that dataset decodes audio with correct sampling rate
591
+ dataset_sampling_rate = next(iter(raw_datasets.values())).features[data_args.audio_column_name].sampling_rate
592
+ if dataset_sampling_rate != feature_extractor.sampling_rate:
593
+ raw_datasets = raw_datasets.cast_column(
594
+ data_args.audio_column_name, datasets.features.Audio(sampling_rate=feature_extractor.sampling_rate)
595
+ )
596
+
597
+ # derive max & min input length for sample rate & max duration
598
+ max_input_length = data_args.max_duration_in_seconds * feature_extractor.sampling_rate
599
+ min_input_length = data_args.min_duration_in_seconds * feature_extractor.sampling_rate
600
+ audio_column_name = data_args.audio_column_name
601
+ num_workers = data_args.preprocessing_num_workers
602
+
603
+ # `phoneme_language` is only relevant if the model is fine-tuned on phoneme classification
604
+ phoneme_language = data_args.phoneme_language
605
+
606
+ # Preprocessing the datasets.
607
+ # We need to read the audio files as arrays and tokenize the targets.
608
+ def prepare_dataset(batch):
609
+ # load audio
610
+ sample = batch[audio_column_name]
611
+
612
+ inputs = feature_extractor(sample["array"], sampling_rate=sample["sampling_rate"])
613
+ batch["input_values"] = inputs.input_values[0]
614
+ batch["input_length"] = len(batch["input_values"])
615
+
616
+ # encode targets
617
+ additional_kwargs = {}
618
+ if phoneme_language is not None:
619
+ additional_kwargs["phonemizer_lang"] = phoneme_language
620
+
621
+ batch["labels"] = tokenizer(batch["target_text"], **additional_kwargs).input_ids
622
+ return batch
623
+
624
+ with training_args.main_process_first(desc="dataset map preprocessing"):
625
+ vectorized_datasets = raw_datasets.map(
626
+ prepare_dataset,
627
+ remove_columns=next(iter(raw_datasets.values())).column_names,
628
+ num_proc=num_workers,
629
+ desc="preprocess datasets",
630
+ )
631
+
632
+ def is_audio_in_length_range(length):
633
+ return length > min_input_length and length < max_input_length
634
+
635
+ # filter data that is shorter than min_input_length
636
+ vectorized_datasets = vectorized_datasets.filter(
637
+ is_audio_in_length_range,
638
+ num_proc=num_workers,
639
+ input_columns=["input_length"],
640
+ )
641
+
642
+ # 7. Next, we can prepare the training.
643
+ # Let's use word error rate (WER) as our evaluation metric,
644
+ # instantiate a data collator and the trainer
645
+
646
+ # Define evaluation metrics during training, *i.e.* word error rate, character error rate
647
+ eval_metrics = {metric: evaluate.load(metric) for metric in data_args.eval_metrics}
648
+
649
+ # for large datasets it is advised to run the preprocessing on a
650
+ # single machine first with ``args.preprocessing_only`` since there will mostly likely
651
+ # be a timeout when running the script in distributed mode.
652
+ # In a second step ``args.preprocessing_only`` can then be set to `False` to load the
653
+ # cached dataset
654
+ if data_args.preprocessing_only:
655
+ logger.info(f"Data preprocessing finished. Files cached at {vectorized_datasets.cache_files}")
656
+ return
657
+
658
+ def compute_metrics(pred):
659
+ pred_logits = pred.predictions
660
+ pred_ids = np.argmax(pred_logits, axis=-1)
661
+
662
+ pred.label_ids[pred.label_ids == -100] = tokenizer.pad_token_id
663
+
664
+ pred_str = tokenizer.batch_decode(pred_ids)
665
+ # we do not want to group tokens when computing the metrics
666
+ label_str = tokenizer.batch_decode(pred.label_ids, group_tokens=False)
667
+
668
+ metrics = {k: v.compute(predictions=pred_str, references=label_str) for k, v in eval_metrics.items()}
669
+
670
+ return metrics
671
+
672
+ # Now save everything to be able to create a single processor later
673
+ if is_main_process(training_args.local_rank):
674
+ # save feature extractor, tokenizer and config
675
+ feature_extractor.save_pretrained(training_args.output_dir)
676
+ tokenizer.save_pretrained(training_args.output_dir)
677
+ config.save_pretrained(training_args.output_dir)
678
+
679
+ try:
680
+ processor = AutoProcessor.from_pretrained(training_args.output_dir)
681
+ except (OSError, KeyError):
682
+ warnings.warn(
683
+ "Loading a processor from a feature extractor config that does not"
684
+ " include a `processor_class` attribute is deprecated and will be removed in v5. Please add the following "
685
+ " attribute to your `preprocessor_config.json` file to suppress this warning: "
686
+ " `'processor_class': 'Wav2Vec2Processor'`",
687
+ FutureWarning,
688
+ )
689
+ processor = Wav2Vec2Processor.from_pretrained(training_args.output_dir)
690
+
691
+ # Instantiate custom data collator
692
+ data_collator = DataCollatorCTCWithPadding(processor=processor)
693
+
694
+ # Initialize Trainer
695
+ trainer = Trainer(
696
+ model=model,
697
+ data_collator=data_collator,
698
+ args=training_args,
699
+ compute_metrics=compute_metrics,
700
+ train_dataset=vectorized_datasets["train"] if training_args.do_train else None,
701
+ eval_dataset=vectorized_datasets["eval"] if training_args.do_eval else None,
702
+ tokenizer=feature_extractor,
703
+ )
704
+
705
+ # 8. Finally, we can start training
706
+
707
+ # Training
708
+ if training_args.do_train:
709
+
710
+ # use last checkpoint if exist
711
+ if last_checkpoint is not None:
712
+ checkpoint = last_checkpoint
713
+ elif os.path.isdir(model_args.model_name_or_path):
714
+ checkpoint = model_args.model_name_or_path
715
+ else:
716
+ checkpoint = None
717
+
718
+ train_result = trainer.train(resume_from_checkpoint=checkpoint)
719
+ trainer.save_model()
720
+
721
+ metrics = train_result.metrics
722
+ max_train_samples = (
723
+ data_args.max_train_samples
724
+ if data_args.max_train_samples is not None
725
+ else len(vectorized_datasets["train"])
726
+ )
727
+ metrics["train_samples"] = min(max_train_samples, len(vectorized_datasets["train"]))
728
+
729
+ trainer.log_metrics("train", metrics)
730
+ trainer.save_metrics("train", metrics)
731
+ trainer.save_state()
732
+
733
+ # Evaluation
734
+ results = {}
735
+ if training_args.do_eval:
736
+ logger.info("*** Evaluate ***")
737
+ metrics = trainer.evaluate()
738
+ max_eval_samples = (
739
+ data_args.max_eval_samples if data_args.max_eval_samples is not None else len(vectorized_datasets["eval"])
740
+ )
741
+ metrics["eval_samples"] = min(max_eval_samples, len(vectorized_datasets["eval"]))
742
+
743
+ trainer.log_metrics("eval", metrics)
744
+ trainer.save_metrics("eval", metrics)
745
+
746
+ # Write model card and (optionally) push to hub
747
+ config_name = data_args.dataset_config_name if data_args.dataset_config_name is not None else "na"
748
+ kwargs = {
749
+ "finetuned_from": model_args.model_name_or_path,
750
+ "tasks": "speech-recognition",
751
+ "tags": ["automatic-speech-recognition", data_args.dataset_name],
752
+ "dataset_args": (
753
+ f"Config: {config_name}, Training split: {data_args.train_split_name}, Eval split:"
754
+ f" {data_args.eval_split_name}"
755
+ ),
756
+ "dataset": f"{data_args.dataset_name.upper()} - {config_name.upper()}",
757
+ }
758
+ if "common_voice" in data_args.dataset_name:
759
+ kwargs["language"] = config_name
760
+
761
+ if training_args.push_to_hub:
762
+ trainer.push_to_hub(**kwargs)
763
+ else:
764
+ trainer.create_model_card(**kwargs)
765
+
766
+ return results
767
+
768
+
769
+ if __name__ == "__main__":
770
+ main()
special_tokens_map.json ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ {
4
+ "content": "<s>",
5
+ "lstrip": false,
6
+ "normalized": true,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ {
11
+ "content": "</s>",
12
+ "lstrip": false,
13
+ "normalized": true,
14
+ "rstrip": false,
15
+ "single_word": false
16
+ }
17
+ ],
18
+ "bos_token": "<s>",
19
+ "eos_token": "</s>",
20
+ "pad_token": "[PAD]",
21
+ "unk_token": "[UNK]"
22
+ }
tokenizer_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "do_lower_case": false,
4
+ "eos_token": "</s>",
5
+ "name_or_path": "./",
6
+ "pad_token": "[PAD]",
7
+ "replace_word_delimiter_char": " ",
8
+ "special_tokens_map_file": null,
9
+ "tokenizer_class": "Wav2Vec2CTCTokenizer",
10
+ "unk_token": "[UNK]",
11
+ "word_delimiter_token": "|"
12
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dc593fb4879c163094342396555a5d5b6a6db890cf5a6ed6d2e340cfe9eaa724
3
+ size 3311
vocab.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@": 1,
3
+ "[PAD]": 29,
4
+ "[UNK]": 28,
5
+ "a": 2,
6
+ "b": 3,
7
+ "c": 4,
8
+ "d": 5,
9
+ "e": 6,
10
+ "f": 7,
11
+ "g": 8,
12
+ "h": 9,
13
+ "i": 10,
14
+ "j": 11,
15
+ "k": 12,
16
+ "l": 13,
17
+ "m": 14,
18
+ "n": 15,
19
+ "o": 16,
20
+ "p": 17,
21
+ "q": 18,
22
+ "r": 19,
23
+ "s": 20,
24
+ "t": 21,
25
+ "u": 22,
26
+ "v": 23,
27
+ "w": 24,
28
+ "x": 25,
29
+ "y": 26,
30
+ "z": 27,
31
+ "|": 0
32
+ }