-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathutils.py
491 lines (440 loc) · 14.5 KB
/
utils.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
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
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
"""Common utilities.
Authors
* Luca Della Libera 2023
"""
import contextlib
import logging
import os
import subprocess
import numpy as np
from scipy.io.wavfile import write
__all__ = [
"play_waveform",
"plot_attention",
"plot_embeddings",
"plot_fbanks",
"plot_grad_norm",
"plot_waveform",
]
@contextlib.contextmanager
def _set_style(style_file_or_name="classic", usetex=False, fontsize=12):
"""Set plotting style.
Arguments
---------
style_file_or_name : str, optional
The path to a Matplotlib style file or the name of one of Matplotlib built-in styles
(see https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html).
usetex : bool, optional
True to render text with LaTeX, False otherwise.
fontsize : int, optional
The global font size.
"""
try:
from matplotlib import pyplot as plt, rc
except ImportError:
logging.warning("This function requires Matplotlib (`pip install matplotlib`)")
yield
return
# Customize style
try:
plt.style.use(style_file_or_name)
plt.rc("font", size=fontsize)
plt.rc("axes", titlesize=fontsize)
plt.rc("axes", labelsize=fontsize)
plt.rc("xtick", labelsize=fontsize - 1)
plt.rc("ytick", labelsize=fontsize - 1)
plt.rc("legend", fontsize=fontsize)
plt.rc("figure", titlesize=fontsize)
rc("text", usetex=usetex)
if usetex:
rc("font", family="serif", serif=["Computer Modern"])
yield
finally:
plt.style.use("default")
def play_waveform(waveform, sample_rate, output_file="waveform.wav", interactive=False):
"""Play a waveform (requires FFplay installed on the system).
Arguments
---------
waveform : np.ndarray
The raw waveform, shape: [num_frames].
sample_rate : int
The sample rate.
output_file : str, optional
The path to the output file.
interactive : bool, optional
True to play interactively, False otherwise.
"""
waveform = np.array(waveform)
if waveform.ndim == 1:
waveform = waveform[None]
write(output_file, sample_rate, np.transpose(waveform))
if interactive:
subprocess.call(["ffplay", output_file])
def plot_waveform(
waveform,
sample_rate,
opacity=1.0,
output_image="waveform.jpg",
labels=None,
xlabel="Time (s)",
ylabel="Amplitude",
title=None,
figsize=(6.0, 4.0),
usetex=False,
legend=False,
style_file_or_name="classic",
interactive=False,
):
"""Plot a waveform in the time domain.
Arguments
---------
waveform : np.ndarray or list
The raw waveform(s), shape: [num_frames].
sample_rate : int
The sample rate.
opacity: float, optional
The opacity (useful to plot overlapped waveforms).
output_image : str, optional
The path to the output image.
labels: list, optional
The label for each waveform.
Used only if `waveform` is a list.
xlabel : str, optional
The x-axis label.
ylabel : str, optional
The y-axis label.
title : str, optional
The title.
figsize : tuple, optional
The figure size.
usetex : bool, optional
True to render text with LaTeX, False otherwise.
legend : bool, optional
True to show the legend, False otherwise.
style_file_or_name : str, optional
The path to a Matplotlib style file or the name of one of Matplotlib built-in styles
(see https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html).
interactive : bool, optional
True to plot interactively, False otherwise.
"""
try:
from matplotlib import pyplot as plt, rc
except ImportError:
logging.warning("This function requires Matplotlib (`pip install matplotlib`)")
return
if isinstance(waveform, (tuple, list)):
waveforms = [np.array(x).squeeze() for x in waveform]
else:
waveforms = [np.array(waveform).squeeze()]
if labels is None:
labels = [f"Waveform {i + 1}" for i in range(len(waveforms))]
if os.path.isfile(style_file_or_name):
style_file_or_name = os.path.realpath(style_file_or_name)
with _set_style(style_file_or_name, usetex):
plt.figure(figsize=figsize)
for i, x in enumerate(waveforms):
num_frames = x.shape[0]
time_axis = np.arange(num_frames) / sample_rate
plt.plot(time_axis, x, label=labels[i], alpha=opacity)
plt.grid()
if legend:
plt.legend(fancybox=True)
if xlabel:
plt.xlabel(xlabel)
if ylabel:
plt.ylabel(ylabel)
if title:
plt.title(title)
if interactive:
plt.show(block=False)
plt.tight_layout()
plt.savefig(output_image, bbox_inches="tight")
plt.close()
def plot_fbanks(
waveform,
sample_rate,
output_image="fbanks.jpg",
xlabel="Feature frame",
ylabel="Frequency (Hz)",
title=None,
figsize=(10.0, 10.0),
usetex=False,
style_file_or_name="classic",
interactive=False,
**fbanks_kwargs,
):
"""Plot a waveform in the time-frequency domain by
extracting filter bank features.
Arguments
---------
waveform : np.ndarray
The raw waveform, shape: [num_frames].
sample_rate : int
The sample rate.
output_image : str, optional
The path to the output image.
xlabel : str, optional
The x-axis label.
ylabel : str, optional
The y-axis label.
title : str, optional
The title.
figsize : tuple, optional
The figure size.
usetex : bool, optional
True to render text with LaTeX, False otherwise.
style_file_or_name : str, optional
The path to a Matplotlib style file or the name of one of Matplotlib built-in styles
(see https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html).
interactive : bool, optional
True to plot interactively, False otherwise.
fbanks_kwargs : dict, optional
The filter banks keyword arguments.
"""
try:
from matplotlib import pyplot as plt, rc
except ImportError:
logging.warning("This function requires Matplotlib (`pip install matplotlib`)")
return
try:
from speechbrain.lobes.features import Fbank
import torch
except ImportError:
logging.warning(
"This function requires SpeechBrain (`pip install speechbrain`)"
)
return
if os.path.isfile(style_file_or_name):
style_file_or_name = os.path.realpath(style_file_or_name)
with _set_style(style_file_or_name, usetex):
plt.figure(figsize=figsize)
waveform = torch.as_tensor(waveform).squeeze()[None]
if not fbanks_kwargs:
fbanks_kwargs = {"n_fft": 512, "n_mels": 80, "win_length": 32}
fbank = Fbank(sample_rate=sample_rate, **fbanks_kwargs)
fbanks = np.array(fbank(waveform)[0].T)
plt.imshow(fbanks, origin="lower")
yrange = np.arange(0, fbanks_kwargs["n_mels"] + 1, 20)
plt.yticks(yrange)
if xlabel:
plt.xlabel(xlabel)
if ylabel:
plt.ylabel(ylabel)
if title:
plt.title(title)
if interactive:
plt.show(block=False)
plt.tight_layout()
plt.savefig(output_image, bbox_inches="tight")
plt.close()
def plot_attention(
attention,
output_image="attention.jpg",
xlabel="Feature frame",
ylabel="Feature frame",
figsize=(4.0, 4.0),
usetex=False,
style_file_or_name="classic",
interactive=False,
average=False,
):
"""Plot an attention map.
Arguments
---------
attention : np.ndarray
The attention map, shape: [num_heads, query_length, key_value_length].
output_image : str, optional
The path to the output image.
xlabel : str, optional
The x-axis label.
ylabel : str, optional
The y-axis label.
figsize : tuple, optional
The figure size.
usetex : bool, optional
True to render text with LaTeX, False otherwise.
style_file_or_name : str, optional
The path to a Matplotlib style file or the name of one of Matplotlib built-in styles
(see https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html).
interactive : bool, optional
True to plot interactively, False otherwise.
average : bool, optional
True to average the attention heads, False otherwise.
"""
try:
from matplotlib import pyplot as plt, rc
except ImportError:
logging.warning("This function requires Matplotlib (`pip install matplotlib`)")
return
if os.path.isfile(style_file_or_name):
style_file_or_name = os.path.realpath(style_file_or_name)
with _set_style(style_file_or_name, usetex):
attention = np.array(attention)
if average:
attention = attention.mean(axis=0, keepdims=True)
H = attention.shape[0]
# fig, axes = plt.subplots(
# 1, H + 1, figsize=figsize, gridspec_kw={"width_ratios": [1, 1, 1, 1, 0.05]}
# )
fig, axes = plt.subplots(1, H, figsize=figsize, squeeze=False)
for i, head in enumerate(attention):
ax = axes[0, i]
ax.imshow(head, cmap="viridis")
# im = ax.imshow(head, cmap="viridis")
if H == 1:
ax.set_title("Average attention")
else:
ax.set_title(f"Head {i + 1}")
if xlabel:
ax.set_xlabel(xlabel)
if ylabel:
if i == 0:
ax.set_ylabel(ylabel)
# plt.colorbar(im, axes[-1], shrink=0.75)
if interactive:
plt.show(block=False)
plt.tight_layout()
plt.savefig(output_image, bbox_inches="tight")
plt.close()
def plot_embeddings(
embeddings,
labels,
output_image="embeddings.jpg",
xlabel="t-SNE x",
ylabel="t-SNE y",
title=None,
figsize=(6.0, 4.0),
usetex=False,
style_file_or_name="classic",
interactive=False,
**tsne_kwargs,
):
"""Plot embeddings via 2D t-SNE.
Arguments
---------
embeddings : np.ndarray or list
The embeddings, shape: [num_embeddings, embedding_dim].
labels : list
The embedding labels, length: [num_embeddings].
output_image : str, optional
The path to the output image.
xlabel : str, optional
The x-axis label.
ylabel : str, optional
The y-axis label.
title : str, optional
The title.
figsize : tuple, optional
The figure size.
usetex : bool, optional
True to render text with LaTeX, False otherwise.
style_file_or_name : str, optional
The path to a Matplotlib style file or the name of one of Matplotlib built-in styles
(see https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html).
interactive : bool, optional
True to plot interactively, False otherwise.
tsne_kwargs : dict, optional
The 2D t-SNE keyword arguments.
"""
try:
from matplotlib import pyplot as plt, rc
except ImportError:
logging.warning("This function requires Matplotlib (`pip install matplotlib`)")
return
try:
from sklearn.preprocessing import LabelEncoder, StandardScaler
from sklearn.manifold import TSNE
except ImportError:
logging.warning(
"This function requires scikit-learn (`pip install scikit-learn`)"
)
return
embeddings = np.array(embeddings)
tsne = TSNE(n_components=2, **tsne_kwargs)
embeddings = tsne.fit_transform(embeddings)
if not isinstance(labels[0], int):
label_encoder = LabelEncoder()
labels = label_encoder.fit_transform(labels)
if os.path.isfile(style_file_or_name):
style_file_or_name = os.path.realpath(style_file_or_name)
with _set_style(style_file_or_name, usetex):
plt.figure(figsize=figsize)
plt.scatter(embeddings[:, 0], embeddings[:, 1], c=labels)
plt.grid()
if xlabel:
plt.xlabel(xlabel)
if ylabel:
plt.ylabel(ylabel)
if title:
plt.title(title)
if interactive:
plt.show(block=False)
plt.tight_layout()
plt.savefig(output_image, bbox_inches="tight")
plt.close()
def plot_grad_norm(
grad_norm,
output_image="grad_norm.jpg",
xlabel="Epoch",
ylabel="Gradient L2 norm",
title=None,
figsize=(6.0, 4.0),
usetex=False,
style_file_or_name="classic",
interactive=False,
):
"""Plot the gradient norm.
Arguments
---------
grad_norm : np.ndarray
The gradient norm.
output_image : str, optional
The path to the output image.
xlabel : str, optional
The x-axis label.
ylabel : str, optional
The y-axis label.
title : str, optional
The title.
figsize : tuple, optional
The figure size.
usetex : bool, optional
True to render text with LaTeX, False otherwise.
style_file_or_name : str, optional
The path to a Matplotlib style file or the name of one of Matplotlib built-in styles
(see https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html).
interactive : bool, optional
True to plot interactively, False otherwise.
"""
try:
from matplotlib import pyplot as plt, rc
except ImportError:
logging.warning("This function requires Matplotlib (`pip install matplotlib`)")
return
try:
from speechbrain.lobes.features import Fbank
import torch
except ImportError:
logging.warning(
"This function requires SpeechBrain (`pip install speechbrain`)"
)
return
if os.path.isfile(style_file_or_name):
style_file_or_name = os.path.realpath(style_file_or_name)
with _set_style(style_file_or_name, usetex):
plt.figure(figsize=figsize)
grad_norm = np.array(grad_norm).squeeze()
plt.plot(range(1, len(grad_norm) + 1), grad_norm)
plt.xlim(1, len(grad_norm))
plt.grid()
if xlabel:
plt.xlabel(xlabel)
if ylabel:
plt.ylabel(ylabel)
if title:
plt.title(title)
if interactive:
plt.show(block=False)
plt.tight_layout()
plt.savefig(output_image, bbox_inches="tight")
plt.close()