-
Notifications
You must be signed in to change notification settings - Fork 1
/
speech_38_ru_commands.py
374 lines (336 loc) · 12.9 KB
/
speech_38_ru_commands.py
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
import torch
import torch.nn as nn
import torchaudio
from conformer import ConformerBlock
from typing import List
import sounddevice as sd
import numpy as np
import torch.nn.functional as F
import sys
import warnings
import argparse
warnings.filterwarnings("ignore")
device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
# Список классов для предсказаний
parser = argparse.ArgumentParser()
parser.add_argument("--porog", type=float, default=1.2)
args = parser.parse_args()
porog=args.porog
CLASSES = [
'дальше',
'вперед',
'назад',
'вверх',
'вниз',
'выше',
'ниже',
'домой',
'громче',
'тише',
'лайк',
'дизлайк',
'следующий',
'предыдущий',
'сначала',
'перемотай',
'выключи',
'стоп',
'хватит',
'замолчи',
'заткнись',
'останови',
'пауза',
'включи',
'смотреть',
'продолжи',
'играй',
'запусти',
'ноль',
'один',
'два',
'три',
'четыре',
'пять',
'шесть',
'семь',
'восемь',
'девять'
]
MAX_LEN=321
hparams = {
"n_cnn_layers": 2,
"n_rnn_layers": 2,
"rnn_dim": 512,
"n_class": 28,
"n_feats": 80,
"stride":2,
"dropout": 0.1,
}
# Hyper-parameters
# sequence_length = 28
input_size = 40
hidden_size = 512
num_layers = 3
num_classes = len(CLASSES)
# bluid models
class Conv1dModule(nn.Module):
"""
Простой кирпичик для свёрточной модели.
n_in -- число фильтров на входе
n_out -- число фильтров на выходе
kernel -- размер ядра
pooling -- размер ядра пулинга
batchnorm -- флаг отвечающий за использование батч нормализации
relu -- флаг отвечающий за использование нелинейности
"""
def __init__(self, n_in, n_out, kernel, pooling, batchnorm=False, relu=True):
super().__init__()
assert kernel % 2 == 1
pad = kernel // 2
modules = [nn.Conv1d(n_in, n_out, kernel, padding=pad)]
if batchnorm:
modules.append(nn.BatchNorm1d(n_out))
if pooling > 1:
modules.append(nn.MaxPool1d(pooling))
if relu:
modules.append(nn.ReLU())
self._net = nn.Sequential(*modules)
def forward(self, X):
return self._net.forward(X)
class Flatten(nn.Module):
def forward(self, X):
return X.reshape(X.shape[0], -1)
class FlattenModule(nn.Module):
"""
Простой кирпичик полносвязной части свёрточной модели.
n_in -- число нейронов на входе
n_out -- число нейроново на выходе
batchnorm -- флаг отвечающий за использование батч нормализации
relu -- флаг отвечающий за использование нелинейности
"""
def __init__(self, n_in, n_out, batchnorm=False, relu=True):
super().__init__()
modules = [nn.Linear(n_in, n_out)]
if batchnorm:
modules.append(nn.BatchNorm1d(n_out))
if relu:
modules.append(nn.ReLU())
self._net = nn.Sequential(*modules)
def forward(self, X):
return self._net.forward(X)
block = ConformerBlock(
dim = 40,
dim_head = 64,
heads = 8,
ff_mult = 4,
conv_expansion_factor = 2,
conv_kernel_size = 31,
attn_dropout = 0.,
ff_dropout = 0.,
conv_dropout = 0.
)
class Conv1dModel(nn.Module):
"""
Пример простой сети для работы со звуком.
Изначально несколько слоёв используют 1d свёртки, затем просходит конкатенация матрицы
признаков в вектор и применяются несколько полносвязных слоёв.
В целом тут всё очень сильно похоже на картинки.
shapes -- число филтров в свёрточных слоях. На нулевом индексе число фильтров на входе.
Далее число фильтров после каждого свёрточного слоя
flatten_shapes -- число нейронов после применения линейных слоёв.
kernels -- размеры ядер свёрточных слоёв
poolings -- параметры пулинга после свёрточных слоёв
batchnorm -- флаг отвечающий за использовать или нет нормализацию
"""
def __init__(
self, shapes: List[int], flatten_shapes: List[int], kernels: List[int],
poolings: List[int], batchnorm=False
):
super().__init__()
assert len(kernels) + 1 == len(shapes)
assert len(poolings) == len(kernels)
modules = []
start_flatten_shape = MAX_LEN
for i in range(len(kernels)):
modules.append(Conv1dModule(
shapes[i], shapes[i + 1], kernels[i], poolings[i],
batchnorm=batchnorm
))
start_flatten_shape //= poolings[i]
modules.append(block)
modules.append(Flatten())
flatten_shapes = [start_flatten_shape * shapes[-1]] + flatten_shapes
for i in range(len(flatten_shapes) - 1):
modules.append(FlattenModule(
flatten_shapes[i], flatten_shapes[i + 1], batchnorm=batchnorm, relu=i+2==len(flatten_shapes)
))
self._net = nn.Sequential(*modules)
def forward(self, X):
return self._net.forward(X)
class SimpleDenoiserModel(nn.Module):
"""
Очень простой денойзер состоящий из маленькой свёрточной модели.
shapes -- число фильтров в свёрточных слоях. На нулевом индексе число фильтров на входе
kernels -- размерность ядер в свёрточных слоях
batchnorm -- флаг отвечающий за использование нормализации
"""
def __init__(self, shapes: List[int], kernels: List[int], batchnorm=False):
super().__init__()
assert len(shapes) == len(kernels) + 1
modules = []
for i in range(len(kernels)):
modules.append(Conv1dModule(
shapes[i], shapes[i + 1], kernels[i], 1, batchnorm=batchnorm, relu=i + 1!=len(kernels)
))
self._net = nn.Sequential(*modules)
def forward(self, X):
return self._net.forward(X)
class CNNLayerNorm(nn.Module):
"""Layer normalization built for cnns input"""
def __init__(self, n_feats):
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
except with layer norm instead of batch norm
"""
def __init__(self, in_channels, out_channels, kernel, stride, dropout, n_feats):
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):
def __init__(self, rnn_dim, hidden_size, dropout, batch_first):
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.BiGRU(x)
x = self.dropout(x)
return x
class SpeechRecognitionModel(nn.Module):
def __init__(self, n_cnn_layers, n_rnn_layers, rnn_dim, n_class, n_feats, stride=2, dropout=0.1):
super(SpeechRecognitionModel, self).__init__()
n_feats = n_feats//2
self.cnn = nn.Conv2d(1, 32, 3, stride=stride, padding=3//2) # cnn for extracting heirachal features
# 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)
)
self.lstm0 = nn.GRU(rnn_dim*2, hidden_size, num_layers, batch_first=True, bidirectional=False)
self.fc = nn.Linear(hidden_size, len(CLASSES))
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)
x0 = self.birnn_layers(x)
out,_=self.lstm0(x0)
out = self.fc(out[:, -1, :])
x = self.classifier(x0)
return x,out
class DueModel(nn.Module):
def __init__(self):
super(DueModel, self).__init__()
self.conv1d_clean_model= Conv1dModel( [80] + [256] * 7, [1024, 256, len(CLASSES)],[5] * 7, [1, 2] * 3 + [1], batchnorm=True)
self.denoser = SimpleDenoiserModel([40, 64, 128,128, 64, 40], [3] * 5)
self.dp2 = SpeechRecognitionModel(
hparams['n_cnn_layers'], hparams['n_rnn_layers'], hparams['rnn_dim'],
hparams['n_class'], hparams['n_feats'], hparams['stride'], hparams['dropout'])
self.ob=nn.Linear(len(CLASSES)*2, len(CLASSES))
# self.ob1=nn.Linear(hparams['rnn_dim'], hparams['n_class'])
def forward(self, x):
x1 = self.denoser(x)
x2= torch.cat((x1, x), dim=1)
x21=x2.unsqueeze(1)
x4,x5=self.dp2(x21)
x3 = self.conv1d_clean_model(x2)
x6= torch.cat((x3, x5), dim=-1)
x7=self.ob(x6)
# x7=self.ob1(x7)
return x7,x3,x5,x1 ,x4
model = DueModel().to(device)
model.load_state_dict(torch.load('model.0'))
model.eval()
# цикл распознавания
prepare_fun=torchaudio.transforms.MFCC(melkwargs={'n_mels': 80})
duration =0.5 # seconds
fs=16000
k=0
old=''
z=0
sys.stdout.write('Произнеси в микрофон слово из списка: \n')
for i in CLASSES:
sys.stdout.write(i+', ')
sys.stdout.write('\n==============================================\n' )
sys.stdout.write('слово - уверенность\n' )
while True:
if z==0:
a1 = sd.rec(int(4 * fs), samplerate=fs, channels=1,dtype=np.float32)
sd.wait()
z=2
else:
a1[:-8000,:]=a1[8000:,:]
myrecording = sd.rec(int(duration * fs), samplerate=fs, channels=1,dtype=np.float32)
sd.wait()
a1[-8000:,:]=myrecording
b=np.moveaxis(a1, 0, -1)
audio=torch.from_numpy(b)
data=prepare_fun(audio)
data=data.to(device)
a,_,_,_,_=model.forward(data)
preds=a.cpu()
probs=torch.softmax(preds, dim=-1)
probas, classes = torch.max(probs, dim=-1)
# classes = torch.argmax(a, dim=-1).cpu().data.numpy()
labels = [CLASSES[idx] for idx in classes]
zz=probas.tolist()[0]
if labels[0]==old:
k+=zz
else:
k=zz
old=labels[0]
if k>porog:
sys.stdout.write('\r'+str(labels[0].upper())+' - '+str(k))
sys.stdout.flush()
# print(labels[0],k)