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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
|
"""Training script for the ASR model."""
import os
import click
import torch
import torch.nn.functional as F
import torchaudio
from AudioLoader.speech import MultilingualLibriSpeech
from torch import nn, optim
from torch.utils.data import DataLoader
from tokenizers import Tokenizer
from .tokenizer import CharTokenizer
from .loss_scores import cer, wer
train_audio_transforms = nn.Sequential(
torchaudio.transforms.MelSpectrogram(sample_rate=16000, n_mels=128),
torchaudio.transforms.FrequencyMasking(freq_mask_param=30),
torchaudio.transforms.TimeMasking(time_mask_param=100),
)
valid_audio_transforms = torchaudio.transforms.MelSpectrogram()
# text_transform = Tokenizer.from_file("data/tokenizers/bpe_tokenizer_german_3000.json")
text_transform = CharTokenizer()
text_transform.from_file("data/tokenizers/char_tokenizer_german.json")
def data_processing(data, data_type="train"):
"""Return the spectrograms, labels, and their lengths."""
spectrograms = []
labels = []
input_lengths = []
label_lengths = []
for sample in data:
if data_type == "train":
spec = train_audio_transforms(sample["waveform"]).squeeze(0).transpose(0, 1)
elif data_type == "valid":
spec = valid_audio_transforms(sample["waveform"]).squeeze(0).transpose(0, 1)
else:
raise ValueError("data_type should be train or valid")
spectrograms.append(spec)
label = torch.Tensor(text_transform.encode(sample["utterance"]).ids)
labels.append(label)
input_lengths.append(spec.shape[0] // 2)
label_lengths.append(len(label))
spectrograms = (
nn.utils.rnn.pad_sequence(spectrograms, batch_first=True)
.unsqueeze(1)
.transpose(2, 3)
)
labels = nn.utils.rnn.pad_sequence(labels, batch_first=True)
return spectrograms, labels, input_lengths, label_lengths
def greedy_decoder(
output, labels, label_lengths, blank_label=28, collapse_repeated=True
):
# TODO: adopt to support both tokenizers
"""Greedily decode a sequence."""
arg_maxes = torch.argmax(output, dim=2) # pylint: disable=no-member
decodes = []
targets = []
for i, args in enumerate(arg_maxes):
decode = []
targets.append(
text_transform.decode(
[int(x) for x in labels[i][: label_lengths[i]].tolist()]
)
)
for j, index in enumerate(args):
if index != blank_label:
if collapse_repeated and j != 0 and index == args[j - 1]:
continue
decode.append(index.item())
decodes.append(text_transform.decode(decode))
return decodes, targets
# TODO: restructure into own file / class
class CNNLayerNorm(nn.Module):
"""Layer normalization built for cnns input"""
def __init__(self, n_feats: int):
super(CNNLayerNorm, self).__init__()
self.layer_norm = nn.LayerNorm(n_feats)
def forward(self, data):
"""x (batch, channel, feature, time)"""
data = data.transpose(2, 3).contiguous() # (batch, channel, time, feature)
data = self.layer_norm(data)
return data.transpose(2, 3).contiguous() # (batch, channel, feature, time)
class ResidualCNN(nn.Module):
"""Residual CNN inspired by https://arxiv.org/pdf/1603.05027.pdf"""
def __init__(
self,
in_channels: int,
out_channels: int,
kernel: int,
stride: int,
dropout: float,
n_feats: int,
):
super(ResidualCNN, self).__init__()
self.cnn1 = nn.Conv2d(
in_channels, out_channels, kernel, stride, padding=kernel // 2
)
self.cnn2 = nn.Conv2d(
out_channels,
out_channels,
kernel,
stride,
padding=kernel // 2,
)
self.dropout1 = nn.Dropout(dropout)
self.dropout2 = nn.Dropout(dropout)
self.layer_norm1 = CNNLayerNorm(n_feats)
self.layer_norm2 = CNNLayerNorm(n_feats)
def forward(self, data):
"""x (batch, channel, feature, time)"""
residual = data # (batch, channel, feature, time)
data = self.layer_norm1(data)
data = F.gelu(data)
data = self.dropout1(data)
data = self.cnn1(data)
data = self.layer_norm2(data)
data = F.gelu(data)
data = self.dropout2(data)
data = self.cnn2(data)
data += residual
return data # (batch, channel, feature, time)
class BidirectionalGRU(nn.Module):
"""BIdirectional GRU with Layer Normalization and Dropout"""
def __init__(
self,
rnn_dim: int,
hidden_size: int,
dropout: float,
batch_first: bool,
):
super(BidirectionalGRU, self).__init__()
self.bi_gru = nn.GRU(
input_size=rnn_dim,
hidden_size=hidden_size,
num_layers=1,
batch_first=batch_first,
bidirectional=True,
)
self.layer_norm = nn.LayerNorm(rnn_dim)
self.dropout = nn.Dropout(dropout)
def forward(self, data):
"""data (batch, time, feature)"""
data = self.layer_norm(data)
data = F.gelu(data)
data = self.dropout(data)
data, _ = self.bi_gru(data)
return data
class SpeechRecognitionModel(nn.Module):
"""Speech Recognition Model Inspired by DeepSpeech 2"""
def __init__(
self,
n_cnn_layers: int,
n_rnn_layers: int,
rnn_dim: int,
n_class: int,
n_feats: int,
stride: int = 2,
dropout: float = 0.1,
):
super(SpeechRecognitionModel, self).__init__()
n_feats //= 2
self.cnn = nn.Conv2d(1, 32, 3, stride=stride, padding=3 // 2)
# n residual cnn layers with filter size of 32
self.rescnn_layers = nn.Sequential(
*[
ResidualCNN(
32, 32, kernel=3, stride=1, dropout=dropout, n_feats=n_feats
)
for _ in range(n_cnn_layers)
]
)
self.fully_connected = nn.Linear(n_feats * 32, rnn_dim)
self.birnn_layers = nn.Sequential(
*[
BidirectionalGRU(
rnn_dim=rnn_dim if i == 0 else rnn_dim * 2,
hidden_size=rnn_dim,
dropout=dropout,
batch_first=i == 0,
)
for i in range(n_rnn_layers)
]
)
self.classifier = nn.Sequential(
nn.Linear(rnn_dim * 2, rnn_dim), # birnn returns rnn_dim*2
nn.GELU(),
nn.Dropout(dropout),
nn.Linear(rnn_dim, n_class),
)
def forward(self, data):
"""data (batch, channel, feature, time)"""
data = self.cnn(data)
data = self.rescnn_layers(data)
sizes = data.size()
data = data.view(
sizes[0], sizes[1] * sizes[2], sizes[3]
) # (batch, feature, time)
data = data.transpose(1, 2) # (batch, time, feature)
data = self.fully_connected(data)
data = self.birnn_layers(data)
data = self.classifier(data)
return data
class IterMeter(object):
"""keeps track of total iterations"""
def __init__(self):
self.val = 0
def step(self):
"""step"""
self.val += 1
def get(self):
"""get"""
return self.val
def train(
model,
device,
train_loader,
criterion,
optimizer,
scheduler,
epoch,
iter_meter,
):
"""Train"""
model.train()
data_len = len(train_loader.dataset)
for batch_idx, _data in enumerate(train_loader):
spectrograms, labels, input_lengths, label_lengths = _data
spectrograms, labels = spectrograms.to(device), labels.to(device)
optimizer.zero_grad()
output = model(spectrograms) # (batch, time, n_class)
output = F.log_softmax(output, dim=2)
output = output.transpose(0, 1) # (time, batch, n_class)
loss = criterion(output, labels, input_lengths, label_lengths)
loss.backward()
optimizer.step()
scheduler.step()
iter_meter.step()
if batch_idx % 100 == 0 or batch_idx == data_len:
print(
f"Train Epoch: \
{epoch} \
[{batch_idx * len(spectrograms)}/{data_len} \
({100.0 * batch_idx / len(train_loader)}%)]\t \
Loss: {loss.item()}"
)
return loss.item()
# TODO: check how dataloader can be made more efficient
def test(model, device, test_loader, criterion):
"""Test"""
print("\nevaluating...")
model.eval()
test_loss = 0
test_cer, test_wer = [], []
with torch.no_grad():
for _data in test_loader:
spectrograms, labels, input_lengths, label_lengths = _data
spectrograms, labels = spectrograms.to(device), labels.to(device)
output = model(spectrograms) # (batch, time, n_class)
output = F.log_softmax(output, dim=2)
output = output.transpose(0, 1) # (time, batch, n_class)
loss = criterion(output, labels, input_lengths, label_lengths)
test_loss += loss.item() / len(test_loader)
decoded_preds, decoded_targets = greedy_decoder(
output.transpose(0, 1), labels, label_lengths
)
for j, pred in enumerate(decoded_preds):
test_cer.append(cer(decoded_targets[j], pred))
test_wer.append(wer(decoded_targets[j], pred))
avg_cer = sum(test_cer) / len(test_cer)
avg_wer = sum(test_wer) / len(test_wer)
print(
f"Test set: Average loss:\
{test_loss}, Average CER: {avg_cer} Average WER: {avg_wer}\n"
)
def run(
learning_rate: float,
batch_size: int,
epochs: int,
load: bool,
path: str,
dataset_path: str,
) -> None:
"""Runs the training script."""
hparams = {
"n_cnn_layers": 3,
"n_rnn_layers": 5,
"rnn_dim": 512,
"n_class": 36, # TODO: dynamically determine this from vocab size
"n_feats": 128,
"stride": 2,
"dropout": 0.1,
"learning_rate": learning_rate,
"batch_size": batch_size,
"epochs": epochs,
}
use_cuda = torch.cuda.is_available()
torch.manual_seed(42)
device = torch.device("cuda" if use_cuda else "cpu") # pylint: disable=no-member
# device = torch.device("mps")
download_dataset = not os.path.isdir(path)
train_dataset = MultilingualLibriSpeech(
dataset_path, "mls_german_opus", split="dev", download=download_dataset
)
test_dataset = MultilingualLibriSpeech(
dataset_path, "mls_german_opus", split="test", download=False
)
train_loader = DataLoader(
train_dataset,
batch_size=hparams["batch_size"],
shuffle=True,
collate_fn=lambda x: data_processing(x, "train"),
)
test_loader = DataLoader(
test_dataset,
batch_size=hparams["batch_size"],
shuffle=True,
collate_fn=lambda x: data_processing(x, "train"),
)
# enable flag to find the most compatible algorithms in advance
if use_cuda:
torch.backends.cudnn.benchmark = True
model = SpeechRecognitionModel(
hparams["n_cnn_layers"],
hparams["n_rnn_layers"],
hparams["rnn_dim"],
hparams["n_class"],
hparams["n_feats"],
hparams["stride"],
hparams["dropout"],
).to(device)
print(
"Num Model Parameters", sum([param.nelement() for param in model.parameters()])
)
optimizer = optim.AdamW(model.parameters(), hparams["learning_rate"])
criterion = nn.CTCLoss(blank=28).to(device)
if load:
checkpoint = torch.load(path)
model.load_state_dict(checkpoint["model_state_dict"])
optimizer.load_state_dict(checkpoint["optimizer_state_dict"])
epoch = checkpoint["epoch"]
loss = checkpoint["loss"]
scheduler = optim.lr_scheduler.OneCycleLR(
optimizer,
max_lr=hparams["learning_rate"],
steps_per_epoch=int(len(train_loader)),
epochs=hparams["epochs"],
anneal_strategy="linear",
)
iter_meter = IterMeter()
for epoch in range(1, epochs + 1):
loss = train(
model,
device,
train_loader,
criterion,
optimizer,
scheduler,
epoch,
iter_meter,
)
test(model=model, device=device, test_loader=test_loader, criterion=criterion)
print("saving epoch", str(epoch))
torch.save(
{"epoch": epoch, "model_state_dict": model.state_dict(), "loss": loss},
path + str(epoch),
)
@click.command()
@click.option("--learning_rate", default=1e-3, help="Learning rate")
@click.option("--batch_size", default=10, help="Batch size")
@click.option("--epochs", default=1, help="Number of epochs")
@click.option("--load", default=False, help="Do you want to load a model?")
@click.option(
"--path",
default="model",
help="Path where the model will be saved to/loaded from",
)
@click.option(
"--dataset_path",
default="data/",
help="Path for the dataset directory",
)
def run_cli(
learning_rate: float,
batch_size: int,
epochs: int,
load: bool,
path: str,
dataset_path: str,
) -> None:
"""Runs the training script."""
run(
learning_rate=learning_rate,
batch_size=batch_size,
epochs=epochs,
load=load,
path=path,
dataset_path=dataset_path,
)
|