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
456
457
458
459
460
461
462
463
464
|
"""Training script for the ASR model."""
from AudioLoader.speech.mls import MultilingualLibriSpeech
import torch
import torch.nn as nn
import torch.optim as optim
import torch.nn.functional as F
from torch.utils.data import DataLoader
import torchaudio
from .loss_scores import cer, wer
class TextTransform:
"""Maps characters to integers and vice versa"""
def __init__(self):
char_map_str = """
' 0
<SPACE> 1
a 2
b 3
c 4
d 5
e 6
f 7
g 8
h 9
i 10
j 11
k 12
l 13
m 14
n 15
o 16
p 17
q 18
r 19
s 20
t 21
u 22
v 23
w 24
x 25
y 26
z 27
ä 28
ö 29
ü 30
ß 31
- 32
é 33
è 34
à 35
ù 36
ç 37
â 38
ê 39
î 40
ô 41
û 42
ë 43
ï 44
ü 45
"""
self.char_map = {}
self.index_map = {}
for line in char_map_str.strip().split("\n"):
ch, index = line.split()
self.char_map[ch] = int(index)
self.index_map[int(index)] = ch
self.index_map[1] = " "
def text_to_int(self, text):
"""Use a character map and convert text to an integer sequence"""
int_sequence = []
for c in text:
if c == " ":
ch = self.char_map["<SPACE>"]
else:
ch = self.char_map[c]
int_sequence.append(ch)
return int_sequence
def int_to_text(self, labels):
"""Use a character map and convert integer labels to an text sequence"""
string = []
for i in labels:
string.append(self.index_map[i])
return "".join(string).replace("<SPACE>", " ")
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 = TextTransform()
def data_processing(data, data_type="train"):
"""Return the spectrograms, labels, and their lengths."""
spectrograms = []
labels = []
input_lengths = []
label_lengths = []
for x in data:
if data_type == "train":
spec = train_audio_transforms(x["waveform"]).squeeze(0).transpose(0, 1)
elif data_type == "valid":
spec = valid_audio_transforms(x["waveform"]).squeeze(0).transpose(0, 1)
else:
raise ValueError("data_type should be train or valid")
spectrograms.append(spec)
label = torch.Tensor(text_transform.text_to_int(x["utterance"].lower()))
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 GreedyDecoder(
output, labels, label_lengths, blank_label=28, collapse_repeated=True
):
"""Greedily decode a sequence."""
arg_maxes = torch.argmax(output, dim=2)
decodes = []
targets = []
for i, args in enumerate(arg_maxes):
decode = []
targets.append(
text_transform.int_to_text(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.int_to_text(decode))
return decodes, targets
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, x):
"""x (batch, channel, feature, time)"""
x = x.transpose(2, 3).contiguous() # (batch, channel, time, feature)
x = self.layer_norm(x)
return x.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, x):
residual = x # (batch, channel, feature, time)
x = self.layer_norm1(x)
x = F.gelu(x)
x = self.dropout1(x)
x = self.cnn1(x)
x = self.layer_norm2(x)
x = F.gelu(x)
x = self.dropout2(x)
x = self.cnn2(x)
x += residual
return x # (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.BiGRU = 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, x):
x = self.layer_norm(x)
x = F.gelu(x)
x = self.dropout(x)
x, _ = self.BiGRU(x)
return x
class SpeechRecognitionModel(nn.Module):
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, x):
x = self.cnn(x)
x = self.rescnn_layers(x)
sizes = x.size()
x = x.view(sizes[0], sizes[1] * sizes[2], sizes[3]) # (batch, feature, time)
x = x.transpose(1, 2) # (batch, time, feature)
x = self.fully_connected(x)
x = self.birnn_layers(x)
x = self.classifier(x)
return x
class IterMeter(object):
"""keeps track of total iterations"""
def __init__(self):
self.val = 0
def step(self):
self.val += 1
def get(self):
return self.val
def train(
model,
device,
train_loader,
criterion,
optimizer,
scheduler,
epoch,
iter_meter,
):
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(
"Train Epoch: {} [{}/{} ({:.0f}%)]\tLoss: {:.6f}".format(
epoch,
batch_idx * len(spectrograms),
data_len,
100.0 * batch_idx / len(train_loader),
loss.item(),
)
)
def test(model, device, test_loader, criterion):
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 = GreedyDecoder(
output.transpose(0, 1), labels, label_lengths
)
for j in range(len(decoded_preds)):
test_cer.append(cer(decoded_targets[j], decoded_preds[j]))
test_wer.append(wer(decoded_targets[j], decoded_preds[j]))
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(lr: float = 5e-4, batch_size: int = 8, epochs: int = 3) -> None:
hparams = {
"n_cnn_layers": 3,
"n_rnn_layers": 5,
"rnn_dim": 512,
"n_class": 46,
"n_feats": 128,
"stride": 2,
"dropout": 0.1,
"learning_rate": lr,
"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")
# device = torch.device("mps")
train_dataset = MultilingualLibriSpeech(
"/Volumes/pherkel/SWR2-ASR/", "mls_german_opus", split="dev", download=False
)
test_dataset = MultilingualLibriSpeech(
"/Volumes/pherkel/SWR2-ASR/", "mls_german_opus", split="test", download=False
)
kwargs = {"num_workers": 1, "pin_memory": True} if use_cuda else {}
train_loader = DataLoader(
train_dataset,
batch_size=hparams["batch_size"],
shuffle=True,
collate_fn=lambda x: data_processing(x, "train"),
**kwargs,
)
test_loader = DataLoader(
test_dataset,
batch_size=hparams["batch_size"],
shuffle=True,
collate_fn=lambda x: data_processing(x, "train"),
**kwargs,
)
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)
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):
train(
model,
device,
train_loader,
criterion,
optimizer,
scheduler,
epoch,
iter_meter,
)
test(model=model, device=device, test_loader=test_loader, criterion=criterion)
if __name__ == "__main__":
run(lr=5e-4, batch_size=16, epochs=1)
|