AndrewMcDowell commited on
Commit
6ce1595
1 Parent(s): 244f59f

Training in progress, step 1000

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
.ipynb_checkpoints/run_speech_recognition_ctc_bnb-checkpoint.py ADDED
@@ -0,0 +1,781 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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, load_metric
32
+
33
+ import bitsandbytes as bnb
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_pt_utils import get_parameter_names
48
+ from transformers.trainer_utils import get_last_checkpoint, is_main_process
49
+ from transformers.utils import check_min_version
50
+ from transformers.utils.versions import require_version
51
+
52
+
53
+
54
+ # Will error if the minimal version of Transformers is not installed. Remove at your own risks.
55
+ check_min_version("4.16.0.dev0")
56
+
57
+ require_version("datasets>=1.13.3", "To fix: pip install -r examples/pytorch/text-classification/requirements.txt")
58
+
59
+
60
+ logger = logging.getLogger(__name__)
61
+
62
+
63
+ def list_field(default=None, metadata=None):
64
+ return field(default_factory=lambda: default, metadata=metadata)
65
+
66
+
67
+ @dataclass
68
+ class ModelArguments:
69
+ """
70
+ Arguments pertaining to which model/config/tokenizer we are going to fine-tune from.
71
+ """
72
+
73
+ model_name_or_path: str = field(
74
+ metadata={"help": "Path to pretrained model or model identifier from huggingface.co/models"}
75
+ )
76
+ tokenizer_name_or_path: Optional[str] = field(
77
+ default=None,
78
+ metadata={"help": "Path to pretrained tokenizer or tokenizer identifier from huggingface.co/models"},
79
+ )
80
+ cache_dir: Optional[str] = field(
81
+ default=None,
82
+ metadata={"help": "Where do you want to store the pretrained models downloaded from huggingface.co"},
83
+ )
84
+ freeze_feature_encoder: bool = field(
85
+ default=True, metadata={"help": "Whether to freeze the feature encoder layers of the model."}
86
+ )
87
+ attention_dropout: float = field(
88
+ default=0.0, metadata={"help": "The dropout ratio for the attention probabilities."}
89
+ )
90
+ activation_dropout: float = field(
91
+ default=0.0, metadata={"help": "The dropout ratio for activations inside the fully connected layer."}
92
+ )
93
+ feat_proj_dropout: float = field(default=0.0, metadata={"help": "The dropout ratio for the projected features."})
94
+ hidden_dropout: float = field(
95
+ default=0.0,
96
+ metadata={
97
+ "help": "The dropout probability for all fully connected layers in the embeddings, encoder, and pooler."
98
+ },
99
+ )
100
+ final_dropout: float = field(
101
+ default=0.0,
102
+ metadata={"help": "The dropout probability for the final projection layer."},
103
+ )
104
+ mask_time_prob: float = field(
105
+ default=0.05,
106
+ metadata={
107
+ "help": "Probability of each feature vector along the time axis to be chosen as the start of the vector"
108
+ "span to be masked. Approximately ``mask_time_prob * sequence_length // mask_time_length`` feature"
109
+ "vectors will be masked along the time axis."
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": "Probability of each feature vector along the feature axis to be chosen as the start of the vector"
120
+ "span to be masked. Approximately ``mask_feature_prob * sequence_length // mask_feature_length`` feature bins will be masked along the time axis."
121
+ },
122
+ )
123
+ mask_feature_length: int = field(
124
+ default=10,
125
+ metadata={"help": "Length of vector span to mask along the feature axis."},
126
+ )
127
+ layerdrop: float = field(default=0.0, metadata={"help": "The LayerDrop probability."})
128
+ ctc_loss_reduction: Optional[str] = field(
129
+ default="mean", metadata={"help": "The way the ctc loss should be reduced. Should be one of 'mean' or 'sum'."}
130
+ )
131
+
132
+
133
+ @dataclass
134
+ class DataTrainingArguments:
135
+ """
136
+ Arguments pertaining to what data we are going to input our model for training and eval.
137
+
138
+ Using `HfArgumentParser` we can turn this class
139
+ into argparse arguments to be able to specify them on
140
+ the command line.
141
+ """
142
+
143
+ dataset_name: str = field(
144
+ metadata={"help": "The configuration name of the dataset to use (via the datasets library)."}
145
+ )
146
+ dataset_config_name: str = field(
147
+ default=None, metadata={"help": "The configuration name of the dataset to use (via the datasets library)."}
148
+ )
149
+ train_split_name: str = field(
150
+ default="train+validation",
151
+ metadata={
152
+ "help": "The name of the training data set split to use (via the datasets library). Defaults to 'train'"
153
+ },
154
+ )
155
+ eval_split_name: str = field(
156
+ default="test",
157
+ metadata={
158
+ "help": "The name of the training data set split to use (via the datasets library). Defaults to 'train'"
159
+ },
160
+ )
161
+ audio_column_name: str = field(
162
+ default="audio",
163
+ metadata={"help": "The name of the dataset column containing the audio data. Defaults to 'audio'"},
164
+ )
165
+ text_column_name: str = field(
166
+ default="text",
167
+ metadata={"help": "The name of the dataset column containing the text data. Defaults to 'text'"},
168
+ )
169
+ overwrite_cache: bool = field(
170
+ default=False, metadata={"help": "Overwrite the cached preprocessed datasets or not."}
171
+ )
172
+ preprocessing_num_workers: Optional[int] = field(
173
+ default=None,
174
+ metadata={"help": "The number of processes to use for the preprocessing."},
175
+ )
176
+ max_train_samples: Optional[int] = field(
177
+ default=None,
178
+ metadata={
179
+ "help": "For debugging purposes or quicker training, truncate the number of training examples to this "
180
+ "value if set."
181
+ },
182
+ )
183
+ max_eval_samples: Optional[int] = field(
184
+ default=None,
185
+ metadata={
186
+ "help": "For debugging purposes or quicker training, truncate the number of validation examples to this "
187
+ "value if set."
188
+ },
189
+ )
190
+ chars_to_ignore: Optional[List[str]] = list_field(
191
+ default=None,
192
+ metadata={"help": "A list of characters to remove from the transcripts."},
193
+ )
194
+ eval_metrics: List[str] = list_field(
195
+ default=["wer", "cer"],
196
+ metadata={"help": "A list of metrics the model should be evaluated on. E.g. `'wer cer'`"},
197
+ )
198
+ max_duration_in_seconds: float = field(
199
+ default=20.0,
200
+ metadata={
201
+ "help": "Filter audio files that are longer than `max_duration_in_seconds` seconds to 'max_duration_in_seconds`"
202
+ },
203
+ )
204
+ min_duration_in_seconds: float = field(
205
+ default=0.0, metadata={"help": "Filter audio files that are shorter than `min_duration_in_seconds` seconds"}
206
+ )
207
+ preprocessing_only: bool = field(
208
+ default=False,
209
+ metadata={
210
+ "help": "Whether to only do data preprocessing and skip training. "
211
+ "This is especially useful when data preprocessing errors out in distributed training due to timeout. "
212
+ "In this case, one should run the preprocessing in a non-distributed setup with `preprocessing_only=True` "
213
+ "so that the cached datasets can consequently be loaded in distributed training"
214
+ },
215
+ )
216
+ use_auth_token: bool = field(
217
+ default=False,
218
+ metadata={
219
+ "help": "If :obj:`True`, will use the token generated when running"
220
+ ":obj:`transformers-cli login` as HTTP bearer authorization for remote files."
221
+ },
222
+ )
223
+ unk_token: str = field(
224
+ default="[UNK]",
225
+ metadata={"help": "The unk token for the tokenizer"},
226
+ )
227
+ pad_token: str = field(
228
+ default="[PAD]",
229
+ metadata={"help": "The padding token for the tokenizer"},
230
+ )
231
+ word_delimiter_token: str = field(
232
+ default="|",
233
+ metadata={"help": "The word delimiter token for the tokenizer"},
234
+ )
235
+ phoneme_language: Optional[str] = field(
236
+ default=None,
237
+ metadata={
238
+ "help": "The target language that should be used be"
239
+ " passed to the tokenizer for tokenization. Note that"
240
+ " this is only relevant if the model classifies the"
241
+ " input audio to a sequence of phoneme sequences."
242
+ },
243
+ )
244
+
245
+
246
+ @dataclass
247
+ class DataCollatorCTCWithPadding:
248
+ """
249
+ Data collator that will dynamically pad the inputs received.
250
+ Args:
251
+ processor (:class:`~transformers.AutoProcessor`)
252
+ The processor used for proccessing the data.
253
+ padding (:obj:`bool`, :obj:`str` or :class:`~transformers.tokenization_utils_base.PaddingStrategy`, `optional`, defaults to :obj:`True`):
254
+ Select a strategy to pad the returned sequences (according to the model's padding side and padding index)
255
+ among:
256
+ * :obj:`True` or :obj:`'longest'`: Pad to the longest sequence in the batch (or no padding if only a single
257
+ sequence if provided).
258
+ * :obj:`'max_length'`: Pad to a maximum length specified with the argument :obj:`max_length` or to the
259
+ maximum acceptable input length for the model if that argument is not provided.
260
+ * :obj:`False` or :obj:`'do_not_pad'` (default): No padding (i.e., can output a batch with sequences of
261
+ different lengths).
262
+ max_length (:obj:`int`, `optional`):
263
+ Maximum length of the ``input_values`` of the returned list and optionally padding length (see above).
264
+ max_length_labels (:obj:`int`, `optional`):
265
+ Maximum length of the ``labels`` returned list and optionally padding length (see above).
266
+ pad_to_multiple_of (:obj:`int`, `optional`):
267
+ If set will pad the sequence to a multiple of the provided value.
268
+ This is especially useful to enable the use of Tensor Cores on NVIDIA hardware with compute capability >=
269
+ 7.5 (Volta).
270
+ """
271
+
272
+ processor: AutoProcessor
273
+ padding: Union[bool, str] = "longest"
274
+ pad_to_multiple_of: Optional[int] = None
275
+ pad_to_multiple_of_labels: Optional[int] = None
276
+
277
+ def __call__(self, features: List[Dict[str, Union[List[int], torch.Tensor]]]) -> Dict[str, torch.Tensor]:
278
+ # split inputs and labels since they have to be of different lenghts and need
279
+ # different padding methods
280
+ input_features = [{"input_values": feature["input_values"]} for feature in features]
281
+ label_features = [{"input_ids": feature["labels"]} for feature in features]
282
+
283
+ batch = self.processor.pad(
284
+ input_features,
285
+ padding=self.padding,
286
+ pad_to_multiple_of=self.pad_to_multiple_of,
287
+ return_tensors="pt",
288
+ )
289
+
290
+ with self.processor.as_target_processor():
291
+ labels_batch = self.processor.pad(
292
+ label_features,
293
+ padding=self.padding,
294
+ pad_to_multiple_of=self.pad_to_multiple_of_labels,
295
+ return_tensors="pt",
296
+ )
297
+
298
+ # replace padding with -100 to ignore loss correctly
299
+ labels = labels_batch["input_ids"].masked_fill(labels_batch.attention_mask.ne(1), -100)
300
+
301
+ batch["labels"] = labels
302
+
303
+ return batch
304
+
305
+
306
+ def create_vocabulary_from_data(
307
+ datasets: DatasetDict,
308
+ word_delimiter_token: Optional[str] = None,
309
+ unk_token: Optional[str] = None,
310
+ pad_token: Optional[str] = None,
311
+ ):
312
+ # Given training and test labels create vocabulary
313
+ def extract_all_chars(batch):
314
+ all_text = " ".join(batch["target_text"])
315
+ vocab = list(set(all_text))
316
+ return {"vocab": [vocab], "all_text": [all_text]}
317
+
318
+ vocabs = datasets.map(
319
+ extract_all_chars,
320
+ batched=True,
321
+ batch_size=-1,
322
+ keep_in_memory=True,
323
+ remove_columns=datasets["train"].column_names,
324
+ )
325
+
326
+ # take union of all unique characters in each dataset
327
+ vocab_set = functools.reduce(
328
+ lambda vocab_1, vocab_2: set(vocab_1["vocab"][0]) | set(vocab_2["vocab"][0]), vocabs.values()
329
+ )
330
+
331
+ vocab_dict = {v: k for k, v in enumerate(sorted(list(vocab_set)))}
332
+
333
+ # replace white space with delimiter token
334
+ if word_delimiter_token is not None:
335
+ vocab_dict[word_delimiter_token] = vocab_dict[" "]
336
+ del vocab_dict[" "]
337
+
338
+ # add unk and pad token
339
+ if unk_token is not None:
340
+ vocab_dict[unk_token] = len(vocab_dict)
341
+
342
+ if pad_token is not None:
343
+ vocab_dict[pad_token] = len(vocab_dict)
344
+
345
+ return vocab_dict
346
+
347
+
348
+ def main():
349
+ # See all possible arguments in src/transformers/training_args.py
350
+ # or by passing the --help flag to this script.
351
+ # We now keep distinct sets of args, for a cleaner separation of concerns.
352
+
353
+ parser = HfArgumentParser((ModelArguments, DataTrainingArguments, TrainingArguments))
354
+ if len(sys.argv) == 2 and sys.argv[1].endswith(".json"):
355
+ # If we pass only one argument to the script and it's the path to a json file,
356
+ # let's parse it to get our arguments.
357
+ model_args, data_args, training_args = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1]))
358
+ else:
359
+ model_args, data_args, training_args = parser.parse_args_into_dataclasses()
360
+
361
+
362
+ num_workers = data_args.preprocessing_num_workers
363
+ # Detecting last checkpoint.
364
+ last_checkpoint = None
365
+ if os.path.isdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir:
366
+ last_checkpoint = get_last_checkpoint(training_args.output_dir)
367
+ if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0:
368
+ raise ValueError(
369
+ f"Output directory ({training_args.output_dir}) already exists and is not empty. "
370
+ "Use --overwrite_output_dir to overcome."
371
+ )
372
+ elif last_checkpoint is not None:
373
+ logger.info(
374
+ f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change "
375
+ "the `--output_dir` or add `--overwrite_output_dir` to train from scratch."
376
+ )
377
+
378
+ # Setup logging
379
+ logging.basicConfig(
380
+ format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
381
+ datefmt="%m/%d/%Y %H:%M:%S",
382
+ handlers=[logging.StreamHandler(sys.stdout)],
383
+ )
384
+ logger.setLevel(logging.INFO if is_main_process(training_args.local_rank) else logging.WARN)
385
+
386
+ # Log on each process the small summary:
387
+ logger.warning(
388
+ f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}"
389
+ f"distributed training: {bool(training_args.local_rank != -1)}, 16-bits training: {training_args.fp16}"
390
+ )
391
+ # Set the verbosity to info of the Transformers logger (on main process only):
392
+ if is_main_process(training_args.local_rank):
393
+ transformers.utils.logging.set_verbosity_info()
394
+ logger.info("Training/evaluation parameters %s", training_args)
395
+
396
+ # Set seed before initializing model.
397
+ set_seed(training_args.seed)
398
+
399
+ # 1. First, let's load the dataset
400
+ raw_datasets = DatasetDict()
401
+
402
+ if training_args.do_train:
403
+ raw_datasets["train"] = load_dataset(
404
+ data_args.dataset_name,
405
+ data_args.dataset_config_name,
406
+ split=data_args.train_split_name,
407
+ use_auth_token=data_args.use_auth_token,
408
+ )
409
+
410
+ if data_args.audio_column_name not in raw_datasets["train"].column_names:
411
+ raise ValueError(
412
+ f"--audio_column_name '{data_args.audio_column_name}' not found in dataset '{data_args.dataset_name}'. "
413
+ "Make sure to set `--audio_column_name` to the correct audio column - one of "
414
+ f"{', '.join(raw_datasets['train'].column_names)}."
415
+ )
416
+
417
+ if data_args.text_column_name not in raw_datasets["train"].column_names:
418
+ raise ValueError(
419
+ f"--text_column_name {data_args.text_column_name} not found in dataset '{data_args.dataset_name}'. "
420
+ "Make sure to set `--text_column_name` to the correct text column - one of "
421
+ f"{', '.join(raw_datasets['train'].column_names)}."
422
+ )
423
+
424
+ if data_args.max_train_samples is not None:
425
+ raw_datasets["train"] = raw_datasets["train"].select(range(data_args.max_train_samples))
426
+
427
+ if training_args.do_eval:
428
+ raw_datasets["eval"] = load_dataset(
429
+ data_args.dataset_name,
430
+ data_args.dataset_config_name,
431
+ split=data_args.eval_split_name,
432
+ use_auth_token=data_args.use_auth_token,
433
+ )
434
+
435
+ if data_args.max_eval_samples is not None:
436
+ raw_datasets["eval"] = raw_datasets["eval"].select(range(data_args.max_eval_samples))
437
+
438
+ # ADDITIONS
439
+ # Remove alphanumeric characters
440
+
441
+ raw_datasets = raw_datasets.filter(lambda example: not re.search('[a-zA-ZA-Za-z]',example['sentence']))
442
+
443
+ # 2. We remove some special characters from the datasets
444
+ # that make training complicated and do not help in transcribing the speech
445
+ # E.g. characters, such as `,` and `.` do not really have an acoustic characteristic
446
+ # that could be easily picked up by the model
447
+ from pykakasi import kakasi
448
+
449
+ kakasi = kakasi()
450
+ kakasi.setMode('J', 'H') #Convert from kanji to hiragana
451
+ # kakasi.setMode("K", "H") #Convert from katakana to hiragana
452
+ conv = kakasi.getConverter()
453
+
454
+ # Default to set of extra characters seen in CV 8.
455
+ chars_to_ignore_regex = (
456
+ f'[{"".join(data_args.chars_to_ignore)}]' if data_args.chars_to_ignore is not None else '[\,\?\!\-\;\:\"\“\%\‘\”\�\—\’\…\–\(\,\[\]\)\(\!\/\「\」\『\』]'
457
+ )
458
+
459
+ # ADDITIONS END
460
+
461
+ text_column_name = data_args.text_column_name
462
+
463
+
464
+ def remove_special_characters(batch):
465
+ if chars_to_ignore_regex is not None:
466
+ batch["target_text"] = conv.do(re.sub(chars_to_ignore_regex, "", batch[text_column_name])) + " "
467
+ else:
468
+ batch["target_text"] = batch[text_column_name].lower() + " "
469
+ return batch
470
+
471
+ with training_args.main_process_first(desc="dataset map special characters removal"):
472
+ raw_datasets = raw_datasets.map(
473
+ remove_special_characters,
474
+ remove_columns=[text_column_name],
475
+ desc="remove special characters from datasets",
476
+ )
477
+
478
+ # save special tokens for tokenizer
479
+ word_delimiter_token = data_args.word_delimiter_token
480
+ unk_token = data_args.unk_token
481
+ pad_token = data_args.pad_token
482
+
483
+ # 3. Next, let's load the config as we might need it to create
484
+ # the tokenizer
485
+ # load config
486
+ config = AutoConfig.from_pretrained(
487
+ model_args.model_name_or_path, cache_dir=model_args.cache_dir, use_auth_token=data_args.use_auth_token
488
+ )
489
+
490
+ # 4. Next, if no tokenizer file is defined,
491
+ # we create the vocabulary of the model by extracting all unique characters from
492
+ # the training and evaluation datasets
493
+ # We need to make sure that only first rank saves vocabulary
494
+ # make sure all processes wait until vocab is created
495
+ tokenizer_name_or_path = model_args.tokenizer_name_or_path
496
+ tokenizer_kwargs = {}
497
+ if tokenizer_name_or_path is None:
498
+ # save vocab in training output dir
499
+ tokenizer_name_or_path = training_args.output_dir
500
+
501
+ vocab_file = os.path.join(tokenizer_name_or_path, "vocab.json")
502
+
503
+ with training_args.main_process_first():
504
+ if training_args.overwrite_output_dir and os.path.isfile(vocab_file):
505
+ os.remove(vocab_file)
506
+
507
+ with training_args.main_process_first(desc="dataset map vocabulary creation"):
508
+ if not os.path.isfile(vocab_file):
509
+ os.makedirs(tokenizer_name_or_path, exist_ok=True)
510
+ vocab_dict = create_vocabulary_from_data(
511
+ raw_datasets,
512
+ word_delimiter_token=word_delimiter_token,
513
+ unk_token=unk_token,
514
+ pad_token=pad_token,
515
+ )
516
+
517
+ # save vocab dict to be loaded into tokenizer
518
+ with open(vocab_file, "w") as file:
519
+ json.dump(vocab_dict, file)
520
+
521
+ # if tokenizer has just been created
522
+ # it is defined by `tokenizer_class` if present in config else by `model_type`
523
+ tokenizer_kwargs = {
524
+ "config": config if config.tokenizer_class is not None else None,
525
+ "tokenizer_type": config.model_type if config.tokenizer_class is None else None,
526
+ "unk_token": unk_token,
527
+ "pad_token": pad_token,
528
+ "word_delimiter_token": word_delimiter_token,
529
+ }
530
+
531
+ # 5. Now we can instantiate the feature extractor, tokenizer and model
532
+ # Note for distributed training, the .from_pretrained methods guarantee that only
533
+ # one local process can concurrently download model & vocab.
534
+
535
+ # load feature_extractor and tokenizer
536
+ tokenizer = AutoTokenizer.from_pretrained(
537
+ tokenizer_name_or_path,
538
+ use_auth_token=data_args.use_auth_token,
539
+ **tokenizer_kwargs,
540
+ )
541
+ feature_extractor = AutoFeatureExtractor.from_pretrained(
542
+ model_args.model_name_or_path, cache_dir=model_args.cache_dir, use_auth_token=data_args.use_auth_token
543
+ )
544
+
545
+ # adapt config
546
+ config.update(
547
+ {
548
+ "feat_proj_dropout": model_args.feat_proj_dropout,
549
+ "attention_dropout": model_args.attention_dropout,
550
+ "hidden_dropout": model_args.hidden_dropout,
551
+ "final_dropout": model_args.final_dropout,
552
+ "mask_time_prob": model_args.mask_time_prob,
553
+ "mask_time_length": model_args.mask_time_length,
554
+ "mask_feature_prob": model_args.mask_feature_prob,
555
+ "mask_feature_length": model_args.mask_feature_length,
556
+ "gradient_checkpointing": training_args.gradient_checkpointing,
557
+ "layerdrop": model_args.layerdrop,
558
+ "ctc_loss_reduction": model_args.ctc_loss_reduction,
559
+ "pad_token_id": tokenizer.pad_token_id,
560
+ "vocab_size": len(tokenizer),
561
+ "activation_dropout": model_args.activation_dropout,
562
+ }
563
+ )
564
+
565
+ # create model
566
+ model = AutoModelForCTC.from_pretrained(
567
+ model_args.model_name_or_path,
568
+ cache_dir=model_args.cache_dir,
569
+ config=config,
570
+ use_auth_token=data_args.use_auth_token,
571
+ )
572
+
573
+ # freeze encoder
574
+ if model_args.freeze_feature_encoder:
575
+ model.freeze_feature_encoder()
576
+
577
+ # 6. Now we preprocess the datasets including loading the audio, resampling and normalization
578
+ # Thankfully, `datasets` takes care of automatically loading and resampling the audio,
579
+ # so that we just need to set the correct target sampling rate and normalize the input
580
+ # via the `feature_extractor`
581
+
582
+ # make sure that dataset decodes audio with correct sampling rate
583
+ dataset_sampling_rate = next(iter(raw_datasets.values())).features[data_args.audio_column_name].sampling_rate
584
+ if dataset_sampling_rate != feature_extractor.sampling_rate:
585
+ raw_datasets = raw_datasets.cast_column(
586
+ data_args.audio_column_name, datasets.features.Audio(sampling_rate=feature_extractor.sampling_rate)
587
+ )
588
+
589
+ # derive max & min input length for sample rate & max duration
590
+ max_input_length = data_args.max_duration_in_seconds * feature_extractor.sampling_rate
591
+ min_input_length = data_args.min_duration_in_seconds * feature_extractor.sampling_rate
592
+ audio_column_name = data_args.audio_column_name
593
+
594
+
595
+ # `phoneme_language` is only relevant if the model is fine-tuned on phoneme classification
596
+ phoneme_language = data_args.phoneme_language
597
+
598
+ # Preprocessing the datasets.
599
+ # We need to read the audio files as arrays and tokenize the targets.
600
+ def prepare_dataset(batch):
601
+ # load audio
602
+ sample = batch[audio_column_name]
603
+
604
+ inputs = feature_extractor(sample["array"], sampling_rate=sample["sampling_rate"])
605
+ batch["input_values"] = inputs.input_values[0]
606
+ batch["input_length"] = len(batch["input_values"])
607
+
608
+ # encode targets
609
+ additional_kwargs = {}
610
+ if phoneme_language is not None:
611
+ additional_kwargs["phonemizer_lang"] = phoneme_language
612
+
613
+ batch["labels"] = tokenizer(batch["target_text"], **additional_kwargs).input_ids
614
+ return batch
615
+
616
+ with training_args.main_process_first(desc="dataset map preprocessing"):
617
+ vectorized_datasets = raw_datasets.map(
618
+ prepare_dataset,
619
+ remove_columns=next(iter(raw_datasets.values())).column_names,
620
+ num_proc=num_workers,
621
+ desc="preprocess datasets",
622
+ )
623
+
624
+ def is_audio_in_length_range(length):
625
+ return length > min_input_length and length < max_input_length
626
+
627
+ # filter data that is shorter than min_input_length
628
+ vectorized_datasets = vectorized_datasets.filter(
629
+ is_audio_in_length_range,
630
+ num_proc=num_workers,
631
+ input_columns=["input_length"],
632
+ )
633
+
634
+ # 7. Next, we can prepare the training.
635
+ # Let's use word error rate (WER) as our evaluation metric,
636
+ # instantiate a data collator and the trainer
637
+
638
+ # Define evaluation metrics during training, *i.e.* word error rate, character error rate
639
+ eval_metrics = {metric: load_metric(metric) for metric in data_args.eval_metrics}
640
+
641
+ # for large datasets it is advised to run the preprocessing on a
642
+ # single machine first with ``args.preprocessing_only`` since there will mostly likely
643
+ # be a timeout when running the script in distributed mode.
644
+ # In a second step ``args.preprocessing_only`` can then be set to `False` to load the
645
+ # cached dataset
646
+ if data_args.preprocessing_only:
647
+ logger.info(f"Data preprocessing finished. Files cached at {vectorized_datasets.cache_files}")
648
+ return
649
+
650
+ def compute_metrics(pred):
651
+ pred_logits = pred.predictions
652
+ pred_ids = np.argmax(pred_logits, axis=-1)
653
+
654
+ pred.label_ids[pred.label_ids == -100] = tokenizer.pad_token_id
655
+
656
+ pred_str = tokenizer.batch_decode(pred_ids)
657
+ # we do not want to group tokens when computing the metrics
658
+ label_str = tokenizer.batch_decode(pred.label_ids, group_tokens=False)
659
+
660
+ metrics = {k: v.compute(predictions=pred_str, references=label_str) for k, v in eval_metrics.items()}
661
+
662
+ return metrics
663
+
664
+ # Now save everything to be able to create a single processor later
665
+ if is_main_process(training_args.local_rank):
666
+ # save feature extractor, tokenizer and config
667
+ feature_extractor.save_pretrained(training_args.output_dir)
668
+ tokenizer.save_pretrained(training_args.output_dir)
669
+ config.save_pretrained(training_args.output_dir)
670
+
671
+ try:
672
+ processor = AutoProcessor.from_pretrained(training_args.output_dir)
673
+ except (OSError, KeyError):
674
+ warnings.warn(
675
+ "Loading a processor from a feature extractor config that does not"
676
+ " include a `processor_class` attribute is deprecated and will be removed in v5. Please add the following "
677
+ " attribute to your `preprocessor_config.json` file to suppress this warning: "
678
+ " `'processor_class': 'Wav2Vec2Processor'`",
679
+ FutureWarning,
680
+ )
681
+ processor = Wav2Vec2Processor.from_pretrained(training_args.output_dir)
682
+
683
+ # Instantiate custom data collator
684
+ data_collator = DataCollatorCTCWithPadding(processor=processor)
685
+
686
+ decay_parameters = get_parameter_names(model, [torch.nn.LayerNorm])
687
+ decay_parameters = [name for name in decay_parameters if "bias" not in name]
688
+ optimizer_grouped_parameters = [
689
+ {
690
+ "params": [p for n, p in model.named_parameters() if n in decay_parameters],
691
+ "weight_decay": training_args.weight_decay,
692
+ },
693
+ {
694
+ "params": [p for n, p in model.named_parameters() if n not in decay_parameters],
695
+ "weight_decay": 0.0,
696
+ },
697
+ ]
698
+ optimizer = bnb.optim.Adam8bit(
699
+ params=optimizer_grouped_parameters,
700
+ lr=training_args.learning_rate,
701
+ betas=(training_args.adam_beta1, training_args.adam_beta2),
702
+ eps=training_args.adam_epsilon,
703
+ )
704
+
705
+ optimizers = (optimizer, None)
706
+
707
+ # Initialize Trainer
708
+ trainer = Trainer(
709
+ model=model,
710
+ data_collator=data_collator,
711
+ args=training_args,
712
+ compute_metrics=compute_metrics,
713
+ train_dataset=vectorized_datasets["train"] if training_args.do_train else None,
714
+ eval_dataset=vectorized_datasets["eval"] if training_args.do_eval else None,
715
+ tokenizer=feature_extractor,
716
+ optimizers=optimizers,
717
+ )
718
+
719
+ # 8. Finally, we can start training
720
+
721
+ # Training
722
+ if training_args.do_train:
723
+
724
+ # use last checkpoint if exist
725
+ if last_checkpoint is not None:
726
+ checkpoint = last_checkpoint
727
+ elif os.path.isdir(model_args.model_name_or_path):
728
+ checkpoint = model_args.model_name_or_path
729
+ else:
730
+ checkpoint = None
731
+
732
+ train_result = trainer.train(resume_from_checkpoint=checkpoint)
733
+ trainer.save_model()
734
+
735
+ metrics = train_result.metrics
736
+ max_train_samples = (
737
+ data_args.max_train_samples
738
+ if data_args.max_train_samples is not None
739
+ else len(vectorized_datasets["train"])
740
+ )
741
+ metrics["train_samples"] = min(max_train_samples, len(vectorized_datasets["train"]))
742
+
743
+ trainer.log_metrics("train", metrics)
744
+ trainer.save_metrics("train", metrics)
745
+ trainer.save_state()
746
+
747
+ # Evaluation
748
+ results = {}
749
+ if training_args.do_eval:
750
+ logger.info("*** Evaluate ***")
751
+ metrics = trainer.evaluate()
752
+ max_eval_samples = (
753
+ data_args.max_eval_samples if data_args.max_eval_samples is not None else len(vectorized_datasets["eval"])
754
+ )
755
+ metrics["eval_samples"] = min(max_eval_samples, len(vectorized_datasets["eval"]))
756
+
757
+ trainer.log_metrics("eval", metrics)
758
+ trainer.save_metrics("eval", metrics)
759
+
760
+ # Write model card and (optionally) push to hub
761
+ config_name = data_args.dataset_config_name if data_args.dataset_config_name is not None else "na"
762
+ kwargs = {
763
+ "finetuned_from": model_args.model_name_or_path,
764
+ "tasks": "speech-recognition",
765
+ "tags": ["automatic-speech-recognition", data_args.dataset_name],
766
+ "dataset_args": f"Config: {config_name}, Training split: {data_args.train_split_name}, Eval split: {data_args.eval_split_name}",
767
+ "dataset": f"{data_args.dataset_name.upper()} - {config_name.upper()}",
768
+ }
769
+ if "common_voice" in data_args.dataset_name:
770
+ kwargs["language"] = config_name
771
+
772
+ if training_args.push_to_hub:
773
+ trainer.push_to_hub(**kwargs)
774
+ else:
775
+ trainer.create_model_card(**kwargs)
776
+
777
+ return results
778
+
779
+
780
+ if __name__ == "__main__":
781
+ main()
.ipynb_checkpoints/run_training-checkpoint.sh ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ python run_speech_recognition_ctc_bnb.py \
2
+ --dataset_name="mozilla-foundation/common_voice_8_0" \
3
+ --model_name_or_path="facebook/wav2vec2-xls-r-1b" \
4
+ --dataset_config_name="ja" \
5
+ --output_dir="./" \
6
+ --overwrite_output_dir \
7
+ --num_train_epochs="50" \
8
+ --per_device_train_batch_size="32" \
9
+ --per_device_eval_batch_size="8" \
10
+ --learning_rate="1e-4" \
11
+ --warmup_steps="2000" \
12
+ --length_column_name="input_length" \
13
+ --evaluation_strategy="steps" \
14
+ --text_column_name="sentence" \
15
+ --save_steps="1000" \
16
+ --eval_steps="1000" \
17
+ --logging_steps="100" \
18
+ --layerdrop="0.0" \
19
+ --activation_dropout="0.1" \
20
+ --save_total_limit="4" \
21
+ --freeze_feature_encoder \
22
+ --feat_proj_dropout="0.0" \
23
+ --mask_time_prob="0.75" \
24
+ --mask_time_length="10" \
25
+ --mask_feature_prob="0.25" \
26
+ --mask_feature_length="64" \
27
+ --gradient_checkpointing \
28
+ --use_auth_token \
29
+ --fp16 \
30
+ --group_by_length \
31
+ --do_train --do_eval \
32
+ --push_to_hub
.ipynb_checkpoints/vocab-checkpoint.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"'": 1, ".": 2, "―": 3, "、": 4, "。": 5, "々": 6, "〇": 7, "〜": 8, "ぁ": 9, "あ": 10, "い": 11, "う": 12, "ぇ": 13, "え": 14, "お": 15, "か": 16, "が": 17, "き": 18, "ぎ": 19, "く": 20, "ぐ": 21, "け": 22, "げ": 23, "こ": 24, "ご": 25, "さ": 26, "ざ": 27, "し": 28, "じ": 29, "す": 30, "ず": 31, "せ": 32, "ぜ": 33, "そ": 34, "ぞ": 35, "た": 36, "だ": 37, "ち": 38, "ぢ": 39, "っ": 40, "つ": 41, "づ": 42, "て": 43, "で": 44, "と": 45, "ど": 46, "な": 47, "に": 48, "ぬ": 49, "ね": 50, "の": 51, "は": 52, "ば": 53, "ぱ": 54, "ひ": 55, "び": 56, "ぴ": 57, "ふ": 58, "ぶ": 59, "ぷ": 60, "へ": 61, "べ": 62, "ぺ": 63, "ほ": 64, "ぼ": 65, "ぽ": 66, "ま": 67, "み": 68, "む": 69, "め": 70, "も": 71, "ゃ": 72, "や": 73, "ゅ": 74, "ゆ": 75, "ょ": 76, "よ": 77, "ら": 78, "り": 79, "る": 80, "れ": 81, "ろ": 82, "わ": 83, "を": 84, "ん": 85, "ァ": 86, "ア": 87, "ィ": 88, "イ": 89, "ゥ": 90, "ウ": 91, "ェ": 92, "エ": 93, "ォ": 94, "オ": 95, "カ": 96, "ガ": 97, "キ": 98, "ギ": 99, "ク": 100, "グ": 101, "ケ": 102, "ゲ": 103, "コ": 104, "ゴ": 105, "サ": 106, "ザ": 107, "シ": 108, "ジ": 109, "ス": 110, "ズ": 111, "セ": 112, "ゼ": 113, "ソ": 114, "ゾ": 115, "タ": 116, "ダ": 117, "チ": 118, "ッ": 119, "ツ": 120, "ヅ": 121, "テ": 122, "デ": 123, "ト": 124, "ド": 125, "ナ": 126, "ニ": 127, "ヌ": 128, "ネ": 129, "ノ": 130, "ハ": 131, "バ": 132, "パ": 133, "ヒ": 134, "ビ": 135, "ピ": 136, "フ": 137, "ブ": 138, "プ": 139, "ヘ": 140, "ベ": 141, "ペ": 142, "ホ": 143, "ボ": 144, "ポ": 145, "マ": 146, "ミ": 147, "ム": 148, "メ": 149, "モ": 150, "ャ": 151, "ヤ": 152, "ュ": 153, "ユ": 154, "ョ": 155, "ヨ": 156, "ラ": 157, "リ": 158, "ル": 159, "レ": 160, "ロ": 161, "ワ": 162, "ン": 163, "ヴ": 164, "ヶ": 165, "・": 166, "ー": 167, "繫": 168, "&": 169, ")": 170, "-": 171, ".": 172, ":": 173, "=": 174, "?": 175, "・": 176, "|": 0, "[UNK]": 177, "[PAD]": 178}
added_tokens.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"<s>": 179, "</s>": 180}
config.json ADDED
@@ -0,0 +1,107 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/wav2vec2-xls-r-1b",
3
+ "activation_dropout": 0.1,
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": 1024,
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_size": 1280,
58
+ "initializer_range": 0.02,
59
+ "intermediate_size": 5120,
60
+ "layer_norm_eps": 1e-05,
61
+ "layerdrop": 0.0,
62
+ "mask_feature_length": 64,
63
+ "mask_feature_min_masks": 0,
64
+ "mask_feature_prob": 0.25,
65
+ "mask_time_length": 10,
66
+ "mask_time_min_masks": 2,
67
+ "mask_time_prob": 0.75,
68
+ "model_type": "wav2vec2",
69
+ "num_adapter_layers": 3,
70
+ "num_attention_heads": 16,
71
+ "num_codevector_groups": 2,
72
+ "num_codevectors_per_group": 320,
73
+ "num_conv_pos_embedding_groups": 16,
74
+ "num_conv_pos_embeddings": 128,
75
+ "num_feat_extract_layers": 7,
76
+ "num_hidden_layers": 48,
77
+ "num_negatives": 100,
78
+ "output_hidden_size": 1280,
79
+ "pad_token_id": 178,
80
+ "proj_codevector_dim": 1024,
81
+ "tdnn_dilation": [
82
+ 1,
83
+ 2,
84
+ 3,
85
+ 1,
86
+ 1
87
+ ],
88
+ "tdnn_dim": [
89
+ 512,
90
+ 512,
91
+ 512,
92
+ 512,
93
+ 1500
94
+ ],
95
+ "tdnn_kernel": [
96
+ 5,
97
+ 3,
98
+ 3,
99
+ 1,
100
+ 1
101
+ ],
102
+ "torch_dtype": "float32",
103
+ "transformers_version": "4.17.0.dev0",
104
+ "use_weighted_layer_sum": false,
105
+ "vocab_size": 181,
106
+ "xvector_output_dim": 512
107
+ }
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,
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:22ea9ce2e0bb00069b3b356c7e5f18975ab3cc48a75c564d8f0565253c433e95
3
+ size 3851240177
run_speech_recognition_ctc_bnb.py ADDED
@@ -0,0 +1,781 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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, load_metric
32
+
33
+ import bitsandbytes as bnb
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_pt_utils import get_parameter_names
48
+ from transformers.trainer_utils import get_last_checkpoint, is_main_process
49
+ from transformers.utils import check_min_version
50
+ from transformers.utils.versions import require_version
51
+
52
+
53
+
54
+ # Will error if the minimal version of Transformers is not installed. Remove at your own risks.
55
+ check_min_version("4.16.0.dev0")
56
+
57
+ require_version("datasets>=1.13.3", "To fix: pip install -r examples/pytorch/text-classification/requirements.txt")
58
+
59
+
60
+ logger = logging.getLogger(__name__)
61
+
62
+
63
+ def list_field(default=None, metadata=None):
64
+ return field(default_factory=lambda: default, metadata=metadata)
65
+
66
+
67
+ @dataclass
68
+ class ModelArguments:
69
+ """
70
+ Arguments pertaining to which model/config/tokenizer we are going to fine-tune from.
71
+ """
72
+
73
+ model_name_or_path: str = field(
74
+ metadata={"help": "Path to pretrained model or model identifier from huggingface.co/models"}
75
+ )
76
+ tokenizer_name_or_path: Optional[str] = field(
77
+ default=None,
78
+ metadata={"help": "Path to pretrained tokenizer or tokenizer identifier from huggingface.co/models"},
79
+ )
80
+ cache_dir: Optional[str] = field(
81
+ default=None,
82
+ metadata={"help": "Where do you want to store the pretrained models downloaded from huggingface.co"},
83
+ )
84
+ freeze_feature_encoder: bool = field(
85
+ default=True, metadata={"help": "Whether to freeze the feature encoder layers of the model."}
86
+ )
87
+ attention_dropout: float = field(
88
+ default=0.0, metadata={"help": "The dropout ratio for the attention probabilities."}
89
+ )
90
+ activation_dropout: float = field(
91
+ default=0.0, metadata={"help": "The dropout ratio for activations inside the fully connected layer."}
92
+ )
93
+ feat_proj_dropout: float = field(default=0.0, metadata={"help": "The dropout ratio for the projected features."})
94
+ hidden_dropout: float = field(
95
+ default=0.0,
96
+ metadata={
97
+ "help": "The dropout probability for all fully connected layers in the embeddings, encoder, and pooler."
98
+ },
99
+ )
100
+ final_dropout: float = field(
101
+ default=0.0,
102
+ metadata={"help": "The dropout probability for the final projection layer."},
103
+ )
104
+ mask_time_prob: float = field(
105
+ default=0.05,
106
+ metadata={
107
+ "help": "Probability of each feature vector along the time axis to be chosen as the start of the vector"
108
+ "span to be masked. Approximately ``mask_time_prob * sequence_length // mask_time_length`` feature"
109
+ "vectors will be masked along the time axis."
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": "Probability of each feature vector along the feature axis to be chosen as the start of the vector"
120
+ "span to be masked. Approximately ``mask_feature_prob * sequence_length // mask_feature_length`` feature bins will be masked along the time axis."
121
+ },
122
+ )
123
+ mask_feature_length: int = field(
124
+ default=10,
125
+ metadata={"help": "Length of vector span to mask along the feature axis."},
126
+ )
127
+ layerdrop: float = field(default=0.0, metadata={"help": "The LayerDrop probability."})
128
+ ctc_loss_reduction: Optional[str] = field(
129
+ default="mean", metadata={"help": "The way the ctc loss should be reduced. Should be one of 'mean' or 'sum'."}
130
+ )
131
+
132
+
133
+ @dataclass
134
+ class DataTrainingArguments:
135
+ """
136
+ Arguments pertaining to what data we are going to input our model for training and eval.
137
+
138
+ Using `HfArgumentParser` we can turn this class
139
+ into argparse arguments to be able to specify them on
140
+ the command line.
141
+ """
142
+
143
+ dataset_name: str = field(
144
+ metadata={"help": "The configuration name of the dataset to use (via the datasets library)."}
145
+ )
146
+ dataset_config_name: str = field(
147
+ default=None, metadata={"help": "The configuration name of the dataset to use (via the datasets library)."}
148
+ )
149
+ train_split_name: str = field(
150
+ default="train+validation",
151
+ metadata={
152
+ "help": "The name of the training data set split to use (via the datasets library). Defaults to 'train'"
153
+ },
154
+ )
155
+ eval_split_name: str = field(
156
+ default="test",
157
+ metadata={
158
+ "help": "The name of the training data set split to use (via the datasets library). Defaults to 'train'"
159
+ },
160
+ )
161
+ audio_column_name: str = field(
162
+ default="audio",
163
+ metadata={"help": "The name of the dataset column containing the audio data. Defaults to 'audio'"},
164
+ )
165
+ text_column_name: str = field(
166
+ default="text",
167
+ metadata={"help": "The name of the dataset column containing the text data. Defaults to 'text'"},
168
+ )
169
+ overwrite_cache: bool = field(
170
+ default=False, metadata={"help": "Overwrite the cached preprocessed datasets or not."}
171
+ )
172
+ preprocessing_num_workers: Optional[int] = field(
173
+ default=None,
174
+ metadata={"help": "The number of processes to use for the preprocessing."},
175
+ )
176
+ max_train_samples: Optional[int] = field(
177
+ default=None,
178
+ metadata={
179
+ "help": "For debugging purposes or quicker training, truncate the number of training examples to this "
180
+ "value if set."
181
+ },
182
+ )
183
+ max_eval_samples: Optional[int] = field(
184
+ default=None,
185
+ metadata={
186
+ "help": "For debugging purposes or quicker training, truncate the number of validation examples to this "
187
+ "value if set."
188
+ },
189
+ )
190
+ chars_to_ignore: Optional[List[str]] = list_field(
191
+ default=None,
192
+ metadata={"help": "A list of characters to remove from the transcripts."},
193
+ )
194
+ eval_metrics: List[str] = list_field(
195
+ default=["wer", "cer"],
196
+ metadata={"help": "A list of metrics the model should be evaluated on. E.g. `'wer cer'`"},
197
+ )
198
+ max_duration_in_seconds: float = field(
199
+ default=20.0,
200
+ metadata={
201
+ "help": "Filter audio files that are longer than `max_duration_in_seconds` seconds to 'max_duration_in_seconds`"
202
+ },
203
+ )
204
+ min_duration_in_seconds: float = field(
205
+ default=0.0, metadata={"help": "Filter audio files that are shorter than `min_duration_in_seconds` seconds"}
206
+ )
207
+ preprocessing_only: bool = field(
208
+ default=False,
209
+ metadata={
210
+ "help": "Whether to only do data preprocessing and skip training. "
211
+ "This is especially useful when data preprocessing errors out in distributed training due to timeout. "
212
+ "In this case, one should run the preprocessing in a non-distributed setup with `preprocessing_only=True` "
213
+ "so that the cached datasets can consequently be loaded in distributed training"
214
+ },
215
+ )
216
+ use_auth_token: bool = field(
217
+ default=False,
218
+ metadata={
219
+ "help": "If :obj:`True`, will use the token generated when running"
220
+ ":obj:`transformers-cli login` as HTTP bearer authorization for remote files."
221
+ },
222
+ )
223
+ unk_token: str = field(
224
+ default="[UNK]",
225
+ metadata={"help": "The unk token for the tokenizer"},
226
+ )
227
+ pad_token: str = field(
228
+ default="[PAD]",
229
+ metadata={"help": "The padding token for the tokenizer"},
230
+ )
231
+ word_delimiter_token: str = field(
232
+ default="|",
233
+ metadata={"help": "The word delimiter token for the tokenizer"},
234
+ )
235
+ phoneme_language: Optional[str] = field(
236
+ default=None,
237
+ metadata={
238
+ "help": "The target language that should be used be"
239
+ " passed to the tokenizer for tokenization. Note that"
240
+ " this is only relevant if the model classifies the"
241
+ " input audio to a sequence of phoneme sequences."
242
+ },
243
+ )
244
+
245
+
246
+ @dataclass
247
+ class DataCollatorCTCWithPadding:
248
+ """
249
+ Data collator that will dynamically pad the inputs received.
250
+ Args:
251
+ processor (:class:`~transformers.AutoProcessor`)
252
+ The processor used for proccessing the data.
253
+ padding (:obj:`bool`, :obj:`str` or :class:`~transformers.tokenization_utils_base.PaddingStrategy`, `optional`, defaults to :obj:`True`):
254
+ Select a strategy to pad the returned sequences (according to the model's padding side and padding index)
255
+ among:
256
+ * :obj:`True` or :obj:`'longest'`: Pad to the longest sequence in the batch (or no padding if only a single
257
+ sequence if provided).
258
+ * :obj:`'max_length'`: Pad to a maximum length specified with the argument :obj:`max_length` or to the
259
+ maximum acceptable input length for the model if that argument is not provided.
260
+ * :obj:`False` or :obj:`'do_not_pad'` (default): No padding (i.e., can output a batch with sequences of
261
+ different lengths).
262
+ max_length (:obj:`int`, `optional`):
263
+ Maximum length of the ``input_values`` of the returned list and optionally padding length (see above).
264
+ max_length_labels (:obj:`int`, `optional`):
265
+ Maximum length of the ``labels`` returned list and optionally padding length (see above).
266
+ pad_to_multiple_of (:obj:`int`, `optional`):
267
+ If set will pad the sequence to a multiple of the provided value.
268
+ This is especially useful to enable the use of Tensor Cores on NVIDIA hardware with compute capability >=
269
+ 7.5 (Volta).
270
+ """
271
+
272
+ processor: AutoProcessor
273
+ padding: Union[bool, str] = "longest"
274
+ pad_to_multiple_of: Optional[int] = None
275
+ pad_to_multiple_of_labels: Optional[int] = None
276
+
277
+ def __call__(self, features: List[Dict[str, Union[List[int], torch.Tensor]]]) -> Dict[str, torch.Tensor]:
278
+ # split inputs and labels since they have to be of different lenghts and need
279
+ # different padding methods
280
+ input_features = [{"input_values": feature["input_values"]} for feature in features]
281
+ label_features = [{"input_ids": feature["labels"]} for feature in features]
282
+
283
+ batch = self.processor.pad(
284
+ input_features,
285
+ padding=self.padding,
286
+ pad_to_multiple_of=self.pad_to_multiple_of,
287
+ return_tensors="pt",
288
+ )
289
+
290
+ with self.processor.as_target_processor():
291
+ labels_batch = self.processor.pad(
292
+ label_features,
293
+ padding=self.padding,
294
+ pad_to_multiple_of=self.pad_to_multiple_of_labels,
295
+ return_tensors="pt",
296
+ )
297
+
298
+ # replace padding with -100 to ignore loss correctly
299
+ labels = labels_batch["input_ids"].masked_fill(labels_batch.attention_mask.ne(1), -100)
300
+
301
+ batch["labels"] = labels
302
+
303
+ return batch
304
+
305
+
306
+ def create_vocabulary_from_data(
307
+ datasets: DatasetDict,
308
+ word_delimiter_token: Optional[str] = None,
309
+ unk_token: Optional[str] = None,
310
+ pad_token: Optional[str] = None,
311
+ ):
312
+ # Given training and test labels create vocabulary
313
+ def extract_all_chars(batch):
314
+ all_text = " ".join(batch["target_text"])
315
+ vocab = list(set(all_text))
316
+ return {"vocab": [vocab], "all_text": [all_text]}
317
+
318
+ vocabs = datasets.map(
319
+ extract_all_chars,
320
+ batched=True,
321
+ batch_size=-1,
322
+ keep_in_memory=True,
323
+ remove_columns=datasets["train"].column_names,
324
+ )
325
+
326
+ # take union of all unique characters in each dataset
327
+ vocab_set = functools.reduce(
328
+ lambda vocab_1, vocab_2: set(vocab_1["vocab"][0]) | set(vocab_2["vocab"][0]), vocabs.values()
329
+ )
330
+
331
+ vocab_dict = {v: k for k, v in enumerate(sorted(list(vocab_set)))}
332
+
333
+ # replace white space with delimiter token
334
+ if word_delimiter_token is not None:
335
+ vocab_dict[word_delimiter_token] = vocab_dict[" "]
336
+ del vocab_dict[" "]
337
+
338
+ # add unk and pad token
339
+ if unk_token is not None:
340
+ vocab_dict[unk_token] = len(vocab_dict)
341
+
342
+ if pad_token is not None:
343
+ vocab_dict[pad_token] = len(vocab_dict)
344
+
345
+ return vocab_dict
346
+
347
+
348
+ def main():
349
+ # See all possible arguments in src/transformers/training_args.py
350
+ # or by passing the --help flag to this script.
351
+ # We now keep distinct sets of args, for a cleaner separation of concerns.
352
+
353
+ parser = HfArgumentParser((ModelArguments, DataTrainingArguments, TrainingArguments))
354
+ if len(sys.argv) == 2 and sys.argv[1].endswith(".json"):
355
+ # If we pass only one argument to the script and it's the path to a json file,
356
+ # let's parse it to get our arguments.
357
+ model_args, data_args, training_args = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1]))
358
+ else:
359
+ model_args, data_args, training_args = parser.parse_args_into_dataclasses()
360
+
361
+
362
+ num_workers = data_args.preprocessing_num_workers
363
+ # Detecting last checkpoint.
364
+ last_checkpoint = None
365
+ if os.path.isdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir:
366
+ last_checkpoint = get_last_checkpoint(training_args.output_dir)
367
+ if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0:
368
+ raise ValueError(
369
+ f"Output directory ({training_args.output_dir}) already exists and is not empty. "
370
+ "Use --overwrite_output_dir to overcome."
371
+ )
372
+ elif last_checkpoint is not None:
373
+ logger.info(
374
+ f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change "
375
+ "the `--output_dir` or add `--overwrite_output_dir` to train from scratch."
376
+ )
377
+
378
+ # Setup logging
379
+ logging.basicConfig(
380
+ format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
381
+ datefmt="%m/%d/%Y %H:%M:%S",
382
+ handlers=[logging.StreamHandler(sys.stdout)],
383
+ )
384
+ logger.setLevel(logging.INFO if is_main_process(training_args.local_rank) else logging.WARN)
385
+
386
+ # Log on each process the small summary:
387
+ logger.warning(
388
+ f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}"
389
+ f"distributed training: {bool(training_args.local_rank != -1)}, 16-bits training: {training_args.fp16}"
390
+ )
391
+ # Set the verbosity to info of the Transformers logger (on main process only):
392
+ if is_main_process(training_args.local_rank):
393
+ transformers.utils.logging.set_verbosity_info()
394
+ logger.info("Training/evaluation parameters %s", training_args)
395
+
396
+ # Set seed before initializing model.
397
+ set_seed(training_args.seed)
398
+
399
+ # 1. First, let's load the dataset
400
+ raw_datasets = DatasetDict()
401
+
402
+ if training_args.do_train:
403
+ raw_datasets["train"] = load_dataset(
404
+ data_args.dataset_name,
405
+ data_args.dataset_config_name,
406
+ split=data_args.train_split_name,
407
+ use_auth_token=data_args.use_auth_token,
408
+ )
409
+
410
+ if data_args.audio_column_name not in raw_datasets["train"].column_names:
411
+ raise ValueError(
412
+ f"--audio_column_name '{data_args.audio_column_name}' not found in dataset '{data_args.dataset_name}'. "
413
+ "Make sure to set `--audio_column_name` to the correct audio column - one of "
414
+ f"{', '.join(raw_datasets['train'].column_names)}."
415
+ )
416
+
417
+ if data_args.text_column_name not in raw_datasets["train"].column_names:
418
+ raise ValueError(
419
+ f"--text_column_name {data_args.text_column_name} not found in dataset '{data_args.dataset_name}'. "
420
+ "Make sure to set `--text_column_name` to the correct text column - one of "
421
+ f"{', '.join(raw_datasets['train'].column_names)}."
422
+ )
423
+
424
+ if data_args.max_train_samples is not None:
425
+ raw_datasets["train"] = raw_datasets["train"].select(range(data_args.max_train_samples))
426
+
427
+ if training_args.do_eval:
428
+ raw_datasets["eval"] = load_dataset(
429
+ data_args.dataset_name,
430
+ data_args.dataset_config_name,
431
+ split=data_args.eval_split_name,
432
+ use_auth_token=data_args.use_auth_token,
433
+ )
434
+
435
+ if data_args.max_eval_samples is not None:
436
+ raw_datasets["eval"] = raw_datasets["eval"].select(range(data_args.max_eval_samples))
437
+
438
+ # ADDITIONS
439
+ # Remove alphanumeric characters
440
+
441
+ raw_datasets = raw_datasets.filter(lambda example: not re.search('[a-zA-ZA-Za-z]',example['sentence']))
442
+
443
+ # 2. We remove some special characters from the datasets
444
+ # that make training complicated and do not help in transcribing the speech
445
+ # E.g. characters, such as `,` and `.` do not really have an acoustic characteristic
446
+ # that could be easily picked up by the model
447
+ from pykakasi import kakasi
448
+
449
+ kakasi = kakasi()
450
+ kakasi.setMode('J', 'H') #Convert from kanji to hiragana
451
+ # kakasi.setMode("K", "H") #Convert from katakana to hiragana
452
+ conv = kakasi.getConverter()
453
+
454
+ # Default to set of extra characters seen in CV 8.
455
+ chars_to_ignore_regex = (
456
+ f'[{"".join(data_args.chars_to_ignore)}]' if data_args.chars_to_ignore is not None else '[\,\?\!\-\;\:\"\“\%\‘\”\�\—\’\…\–\(\,\[\]\)\(\!\/\「\」\『\』]'
457
+ )
458
+
459
+ # ADDITIONS END
460
+
461
+ text_column_name = data_args.text_column_name
462
+
463
+
464
+ def remove_special_characters(batch):
465
+ if chars_to_ignore_regex is not None:
466
+ batch["target_text"] = conv.do(re.sub(chars_to_ignore_regex, "", batch[text_column_name])) + " "
467
+ else:
468
+ batch["target_text"] = batch[text_column_name].lower() + " "
469
+ return batch
470
+
471
+ with training_args.main_process_first(desc="dataset map special characters removal"):
472
+ raw_datasets = raw_datasets.map(
473
+ remove_special_characters,
474
+ remove_columns=[text_column_name],
475
+ desc="remove special characters from datasets",
476
+ )
477
+
478
+ # save special tokens for tokenizer
479
+ word_delimiter_token = data_args.word_delimiter_token
480
+ unk_token = data_args.unk_token
481
+ pad_token = data_args.pad_token
482
+
483
+ # 3. Next, let's load the config as we might need it to create
484
+ # the tokenizer
485
+ # load config
486
+ config = AutoConfig.from_pretrained(
487
+ model_args.model_name_or_path, cache_dir=model_args.cache_dir, use_auth_token=data_args.use_auth_token
488
+ )
489
+
490
+ # 4. Next, if no tokenizer file is defined,
491
+ # we create the vocabulary of the model by extracting all unique characters from
492
+ # the training and evaluation datasets
493
+ # We need to make sure that only first rank saves vocabulary
494
+ # make sure all processes wait until vocab is created
495
+ tokenizer_name_or_path = model_args.tokenizer_name_or_path
496
+ tokenizer_kwargs = {}
497
+ if tokenizer_name_or_path is None:
498
+ # save vocab in training output dir
499
+ tokenizer_name_or_path = training_args.output_dir
500
+
501
+ vocab_file = os.path.join(tokenizer_name_or_path, "vocab.json")
502
+
503
+ with training_args.main_process_first():
504
+ if training_args.overwrite_output_dir and os.path.isfile(vocab_file):
505
+ os.remove(vocab_file)
506
+
507
+ with training_args.main_process_first(desc="dataset map vocabulary creation"):
508
+ if not os.path.isfile(vocab_file):
509
+ os.makedirs(tokenizer_name_or_path, exist_ok=True)
510
+ vocab_dict = create_vocabulary_from_data(
511
+ raw_datasets,
512
+ word_delimiter_token=word_delimiter_token,
513
+ unk_token=unk_token,
514
+ pad_token=pad_token,
515
+ )
516
+
517
+ # save vocab dict to be loaded into tokenizer
518
+ with open(vocab_file, "w") as file:
519
+ json.dump(vocab_dict, file)
520
+
521
+ # if tokenizer has just been created
522
+ # it is defined by `tokenizer_class` if present in config else by `model_type`
523
+ tokenizer_kwargs = {
524
+ "config": config if config.tokenizer_class is not None else None,
525
+ "tokenizer_type": config.model_type if config.tokenizer_class is None else None,
526
+ "unk_token": unk_token,
527
+ "pad_token": pad_token,
528
+ "word_delimiter_token": word_delimiter_token,
529
+ }
530
+
531
+ # 5. Now we can instantiate the feature extractor, tokenizer and model
532
+ # Note for distributed training, the .from_pretrained methods guarantee that only
533
+ # one local process can concurrently download model & vocab.
534
+
535
+ # load feature_extractor and tokenizer
536
+ tokenizer = AutoTokenizer.from_pretrained(
537
+ tokenizer_name_or_path,
538
+ use_auth_token=data_args.use_auth_token,
539
+ **tokenizer_kwargs,
540
+ )
541
+ feature_extractor = AutoFeatureExtractor.from_pretrained(
542
+ model_args.model_name_or_path, cache_dir=model_args.cache_dir, use_auth_token=data_args.use_auth_token
543
+ )
544
+
545
+ # adapt config
546
+ config.update(
547
+ {
548
+ "feat_proj_dropout": model_args.feat_proj_dropout,
549
+ "attention_dropout": model_args.attention_dropout,
550
+ "hidden_dropout": model_args.hidden_dropout,
551
+ "final_dropout": model_args.final_dropout,
552
+ "mask_time_prob": model_args.mask_time_prob,
553
+ "mask_time_length": model_args.mask_time_length,
554
+ "mask_feature_prob": model_args.mask_feature_prob,
555
+ "mask_feature_length": model_args.mask_feature_length,
556
+ "gradient_checkpointing": training_args.gradient_checkpointing,
557
+ "layerdrop": model_args.layerdrop,
558
+ "ctc_loss_reduction": model_args.ctc_loss_reduction,
559
+ "pad_token_id": tokenizer.pad_token_id,
560
+ "vocab_size": len(tokenizer),
561
+ "activation_dropout": model_args.activation_dropout,
562
+ }
563
+ )
564
+
565
+ # create model
566
+ model = AutoModelForCTC.from_pretrained(
567
+ model_args.model_name_or_path,
568
+ cache_dir=model_args.cache_dir,
569
+ config=config,
570
+ use_auth_token=data_args.use_auth_token,
571
+ )
572
+
573
+ # freeze encoder
574
+ if model_args.freeze_feature_encoder:
575
+ model.freeze_feature_encoder()
576
+
577
+ # 6. Now we preprocess the datasets including loading the audio, resampling and normalization
578
+ # Thankfully, `datasets` takes care of automatically loading and resampling the audio,
579
+ # so that we just need to set the correct target sampling rate and normalize the input
580
+ # via the `feature_extractor`
581
+
582
+ # make sure that dataset decodes audio with correct sampling rate
583
+ dataset_sampling_rate = next(iter(raw_datasets.values())).features[data_args.audio_column_name].sampling_rate
584
+ if dataset_sampling_rate != feature_extractor.sampling_rate:
585
+ raw_datasets = raw_datasets.cast_column(
586
+ data_args.audio_column_name, datasets.features.Audio(sampling_rate=feature_extractor.sampling_rate)
587
+ )
588
+
589
+ # derive max & min input length for sample rate & max duration
590
+ max_input_length = data_args.max_duration_in_seconds * feature_extractor.sampling_rate
591
+ min_input_length = data_args.min_duration_in_seconds * feature_extractor.sampling_rate
592
+ audio_column_name = data_args.audio_column_name
593
+
594
+
595
+ # `phoneme_language` is only relevant if the model is fine-tuned on phoneme classification
596
+ phoneme_language = data_args.phoneme_language
597
+
598
+ # Preprocessing the datasets.
599
+ # We need to read the audio files as arrays and tokenize the targets.
600
+ def prepare_dataset(batch):
601
+ # load audio
602
+ sample = batch[audio_column_name]
603
+
604
+ inputs = feature_extractor(sample["array"], sampling_rate=sample["sampling_rate"])
605
+ batch["input_values"] = inputs.input_values[0]
606
+ batch["input_length"] = len(batch["input_values"])
607
+
608
+ # encode targets
609
+ additional_kwargs = {}
610
+ if phoneme_language is not None:
611
+ additional_kwargs["phonemizer_lang"] = phoneme_language
612
+
613
+ batch["labels"] = tokenizer(batch["target_text"], **additional_kwargs).input_ids
614
+ return batch
615
+
616
+ with training_args.main_process_first(desc="dataset map preprocessing"):
617
+ vectorized_datasets = raw_datasets.map(
618
+ prepare_dataset,
619
+ remove_columns=next(iter(raw_datasets.values())).column_names,
620
+ num_proc=num_workers,
621
+ desc="preprocess datasets",
622
+ )
623
+
624
+ def is_audio_in_length_range(length):
625
+ return length > min_input_length and length < max_input_length
626
+
627
+ # filter data that is shorter than min_input_length
628
+ vectorized_datasets = vectorized_datasets.filter(
629
+ is_audio_in_length_range,
630
+ num_proc=num_workers,
631
+ input_columns=["input_length"],
632
+ )
633
+
634
+ # 7. Next, we can prepare the training.
635
+ # Let's use word error rate (WER) as our evaluation metric,
636
+ # instantiate a data collator and the trainer
637
+
638
+ # Define evaluation metrics during training, *i.e.* word error rate, character error rate
639
+ eval_metrics = {metric: load_metric(metric) for metric in data_args.eval_metrics}
640
+
641
+ # for large datasets it is advised to run the preprocessing on a
642
+ # single machine first with ``args.preprocessing_only`` since there will mostly likely
643
+ # be a timeout when running the script in distributed mode.
644
+ # In a second step ``args.preprocessing_only`` can then be set to `False` to load the
645
+ # cached dataset
646
+ if data_args.preprocessing_only:
647
+ logger.info(f"Data preprocessing finished. Files cached at {vectorized_datasets.cache_files}")
648
+ return
649
+
650
+ def compute_metrics(pred):
651
+ pred_logits = pred.predictions
652
+ pred_ids = np.argmax(pred_logits, axis=-1)
653
+
654
+ pred.label_ids[pred.label_ids == -100] = tokenizer.pad_token_id
655
+
656
+ pred_str = tokenizer.batch_decode(pred_ids)
657
+ # we do not want to group tokens when computing the metrics
658
+ label_str = tokenizer.batch_decode(pred.label_ids, group_tokens=False)
659
+
660
+ metrics = {k: v.compute(predictions=pred_str, references=label_str) for k, v in eval_metrics.items()}
661
+
662
+ return metrics
663
+
664
+ # Now save everything to be able to create a single processor later
665
+ if is_main_process(training_args.local_rank):
666
+ # save feature extractor, tokenizer and config
667
+ feature_extractor.save_pretrained(training_args.output_dir)
668
+ tokenizer.save_pretrained(training_args.output_dir)
669
+ config.save_pretrained(training_args.output_dir)
670
+
671
+ try:
672
+ processor = AutoProcessor.from_pretrained(training_args.output_dir)
673
+ except (OSError, KeyError):
674
+ warnings.warn(
675
+ "Loading a processor from a feature extractor config that does not"
676
+ " include a `processor_class` attribute is deprecated and will be removed in v5. Please add the following "
677
+ " attribute to your `preprocessor_config.json` file to suppress this warning: "
678
+ " `'processor_class': 'Wav2Vec2Processor'`",
679
+ FutureWarning,
680
+ )
681
+ processor = Wav2Vec2Processor.from_pretrained(training_args.output_dir)
682
+
683
+ # Instantiate custom data collator
684
+ data_collator = DataCollatorCTCWithPadding(processor=processor)
685
+
686
+ decay_parameters = get_parameter_names(model, [torch.nn.LayerNorm])
687
+ decay_parameters = [name for name in decay_parameters if "bias" not in name]
688
+ optimizer_grouped_parameters = [
689
+ {
690
+ "params": [p for n, p in model.named_parameters() if n in decay_parameters],
691
+ "weight_decay": training_args.weight_decay,
692
+ },
693
+ {
694
+ "params": [p for n, p in model.named_parameters() if n not in decay_parameters],
695
+ "weight_decay": 0.0,
696
+ },
697
+ ]
698
+ optimizer = bnb.optim.Adam8bit(
699
+ params=optimizer_grouped_parameters,
700
+ lr=training_args.learning_rate,
701
+ betas=(training_args.adam_beta1, training_args.adam_beta2),
702
+ eps=training_args.adam_epsilon,
703
+ )
704
+
705
+ optimizers = (optimizer, None)
706
+
707
+ # Initialize Trainer
708
+ trainer = Trainer(
709
+ model=model,
710
+ data_collator=data_collator,
711
+ args=training_args,
712
+ compute_metrics=compute_metrics,
713
+ train_dataset=vectorized_datasets["train"] if training_args.do_train else None,
714
+ eval_dataset=vectorized_datasets["eval"] if training_args.do_eval else None,
715
+ tokenizer=feature_extractor,
716
+ optimizers=optimizers,
717
+ )
718
+
719
+ # 8. Finally, we can start training
720
+
721
+ # Training
722
+ if training_args.do_train:
723
+
724
+ # use last checkpoint if exist
725
+ if last_checkpoint is not None:
726
+ checkpoint = last_checkpoint
727
+ elif os.path.isdir(model_args.model_name_or_path):
728
+ checkpoint = model_args.model_name_or_path
729
+ else:
730
+ checkpoint = None
731
+
732
+ train_result = trainer.train(resume_from_checkpoint=checkpoint)
733
+ trainer.save_model()
734
+
735
+ metrics = train_result.metrics
736
+ max_train_samples = (
737
+ data_args.max_train_samples
738
+ if data_args.max_train_samples is not None
739
+ else len(vectorized_datasets["train"])
740
+ )
741
+ metrics["train_samples"] = min(max_train_samples, len(vectorized_datasets["train"]))
742
+
743
+ trainer.log_metrics("train", metrics)
744
+ trainer.save_metrics("train", metrics)
745
+ trainer.save_state()
746
+
747
+ # Evaluation
748
+ results = {}
749
+ if training_args.do_eval:
750
+ logger.info("*** Evaluate ***")
751
+ metrics = trainer.evaluate()
752
+ max_eval_samples = (
753
+ data_args.max_eval_samples if data_args.max_eval_samples is not None else len(vectorized_datasets["eval"])
754
+ )
755
+ metrics["eval_samples"] = min(max_eval_samples, len(vectorized_datasets["eval"]))
756
+
757
+ trainer.log_metrics("eval", metrics)
758
+ trainer.save_metrics("eval", metrics)
759
+
760
+ # Write model card and (optionally) push to hub
761
+ config_name = data_args.dataset_config_name if data_args.dataset_config_name is not None else "na"
762
+ kwargs = {
763
+ "finetuned_from": model_args.model_name_or_path,
764
+ "tasks": "speech-recognition",
765
+ "tags": ["automatic-speech-recognition", data_args.dataset_name],
766
+ "dataset_args": f"Config: {config_name}, Training split: {data_args.train_split_name}, Eval split: {data_args.eval_split_name}",
767
+ "dataset": f"{data_args.dataset_name.upper()} - {config_name.upper()}",
768
+ }
769
+ if "common_voice" in data_args.dataset_name:
770
+ kwargs["language"] = config_name
771
+
772
+ if training_args.push_to_hub:
773
+ trainer.push_to_hub(**kwargs)
774
+ else:
775
+ trainer.create_model_card(**kwargs)
776
+
777
+ return results
778
+
779
+
780
+ if __name__ == "__main__":
781
+ main()
run_training.sh ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ python run_speech_recognition_ctc_bnb.py \
2
+ --dataset_name="mozilla-foundation/common_voice_8_0" \
3
+ --model_name_or_path="facebook/wav2vec2-xls-r-1b" \
4
+ --dataset_config_name="ja" \
5
+ --output_dir="./" \
6
+ --overwrite_output_dir \
7
+ --num_train_epochs="50" \
8
+ --per_device_train_batch_size="32" \
9
+ --per_device_eval_batch_size="8" \
10
+ --learning_rate="1e-4" \
11
+ --warmup_steps="2000" \
12
+ --length_column_name="input_length" \
13
+ --evaluation_strategy="steps" \
14
+ --text_column_name="sentence" \
15
+ --save_steps="1000" \
16
+ --eval_steps="1000" \
17
+ --logging_steps="100" \
18
+ --layerdrop="0.0" \
19
+ --activation_dropout="0.1" \
20
+ --save_total_limit="4" \
21
+ --freeze_feature_encoder \
22
+ --feat_proj_dropout="0.0" \
23
+ --mask_time_prob="0.75" \
24
+ --mask_time_length="10" \
25
+ --mask_feature_prob="0.25" \
26
+ --mask_feature_length="64" \
27
+ --gradient_checkpointing \
28
+ --use_auth_token \
29
+ --fp16 \
30
+ --group_by_length \
31
+ --do_train --do_eval \
32
+ --push_to_hub
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": "<s>", "eos_token": "</s>", "unk_token": "[UNK]", "pad_token": "[PAD]", "additional_special_tokens": [{"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "<s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}, {"content": "</s>", "single_word": false, "lstrip": false, "rstrip": false, "normalized": true}]}
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "[UNK]", "bos_token": "<s>", "eos_token": "</s>", "pad_token": "[PAD]", "do_lower_case": false, "word_delimiter_token": "|", "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "./", "tokenizer_class": "Wav2Vec2CTCTokenizer"}
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4677067a838996bf37783552c2516b25469b06a2d8d9c31d21a824ac3f516a7
3
+ size 2991
vocab.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"'": 1, ".": 2, "―": 3, "、": 4, "。": 5, "々": 6, "〇": 7, "〜": 8, "ぁ": 9, "あ": 10, "い": 11, "う": 12, "ぇ": 13, "え": 14, "お": 15, "か": 16, "が": 17, "き": 18, "ぎ": 19, "く": 20, "ぐ": 21, "け": 22, "げ": 23, "こ": 24, "ご": 25, "さ": 26, "ざ": 27, "し": 28, "じ": 29, "す": 30, "ず": 31, "せ": 32, "ぜ": 33, "そ": 34, "ぞ": 35, "た": 36, "だ": 37, "ち": 38, "ぢ": 39, "っ": 40, "つ": 41, "づ": 42, "て": 43, "で": 44, "と": 45, "ど": 46, "な": 47, "に": 48, "ぬ": 49, "ね": 50, "の": 51, "は": 52, "ば": 53, "ぱ": 54, "ひ": 55, "び": 56, "ぴ": 57, "ふ": 58, "ぶ": 59, "ぷ": 60, "へ": 61, "べ": 62, "ぺ": 63, "ほ": 64, "ぼ": 65, "ぽ": 66, "ま": 67, "み": 68, "む": 69, "め": 70, "も": 71, "ゃ": 72, "や": 73, "ゅ": 74, "ゆ": 75, "ょ": 76, "よ": 77, "ら": 78, "り": 79, "る": 80, "れ": 81, "ろ": 82, "わ": 83, "を": 84, "ん": 85, "ァ": 86, "ア": 87, "ィ": 88, "イ": 89, "ゥ": 90, "ウ": 91, "ェ": 92, "エ": 93, "ォ": 94, "オ": 95, "カ": 96, "ガ": 97, "キ": 98, "ギ": 99, "ク": 100, "グ": 101, "ケ": 102, "ゲ": 103, "コ": 104, "ゴ": 105, "サ": 106, "ザ": 107, "シ": 108, "ジ": 109, "ス": 110, "ズ": 111, "セ": 112, "ゼ": 113, "ソ": 114, "ゾ": 115, "タ": 116, "ダ": 117, "チ": 118, "ッ": 119, "ツ": 120, "ヅ": 121, "テ": 122, "デ": 123, "ト": 124, "ド": 125, "ナ": 126, "ニ": 127, "ヌ": 128, "ネ": 129, "ノ": 130, "ハ": 131, "バ": 132, "パ": 133, "ヒ": 134, "ビ": 135, "ピ": 136, "フ": 137, "ブ": 138, "プ": 139, "ヘ": 140, "ベ": 141, "ペ": 142, "ホ": 143, "ボ": 144, "ポ": 145, "マ": 146, "ミ": 147, "ム": 148, "メ": 149, "モ": 150, "ャ": 151, "ヤ": 152, "ュ": 153, "ユ": 154, "ョ": 155, "ヨ": 156, "ラ": 157, "リ": 158, "ル": 159, "レ": 160, "ロ": 161, "ワ": 162, "ン": 163, "ヴ": 164, "ヶ": 165, "・": 166, "ー": 167, "繫": 168, "&": 169, ")": 170, "-": 171, ".": 172, ":": 173, "=": 174, "?": 175, "・": 176, "|": 0, "[UNK]": 177, "[PAD]": 178}