-
Notifications
You must be signed in to change notification settings - Fork 0
/
spec_features.py
1123 lines (989 loc) · 37.8 KB
/
spec_features.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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# LongTermSpectralFlatness, SpectralSlope have some unknown issuses,
# the results are different from the matlab's results.
import torch
from speechbrain.processing.features import STFT, spectral_magnitude
class SpectralEntropy(torch.nn.Module):
"""
Spectral entropy has been used successfully in voiced/unvoiced
decisions for automatic speech recognition. Because entropy is
a measure of disorder, regions of voiced speech have lower
entropy compared to regions of unvoiced speech.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
normalized_entropy : bool
If True, divide by log(bins.size) to normalize the spectral entropy
between 0 and 1.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralEntropy(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
normalized_entropy=False,
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.normalized_entropy = normalized_entropy
self.window = window_fn(win_length)
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
if x.ndim == 2:
x -= x.mean(axis=1, keepdim=True)
x = self.stft(x)
# Compute power spectral density(PSD)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
# Compute the cross spectral density where `Pxy` has units of V**2/Hz
# https://github.com/scipy/scipy/blob/2e5883ef7af4f5ed4a5b80a1759a45e43163bf3f/scipy/signal/_spectral_py.py#L1840
psd = spectr / self.sample_rate * (self.window**2).sum()
# Last point is unpaired Nyquist freq point, don't double.
# Then average over windows.
psd[..., 1:-1] *= 2
psd = psd.mean(dim=-1, keepdim=True)
# Normalize to be viewed as a probability density function (PDF)
psd_norm = psd / psd.sum(dim=1, keepdim=True)
entropy = - (psd_norm * psd_norm.log())
if self.normalized_entropy:
entropy /= torch.log(torch.tensor([psd_norm.shape[-1]]))
return entropy
class SpectralCentroid(torch.nn.Module):
"""
The spectral centroid represents the "center of gravity" of the spectrum.
It is used as an indication of brightness and is commonly used in music
analysis and genre classification.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralCentroid(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
n_fft = (x.shape[2] - 1) * 2
freqs = torch.fft.rfftfreq(n_fft, d=1./self.sample_rate, device=x.device)
centroid = (
(spectr * freqs).sum(dim=-1, keepdim=True)
/ spectr.sum(dim=-1, keepdim=True)
)
return centroid
class SpectralSpread(torch.nn.Module):
"""
The spectral spread represents the "instantaneous bandwidth" of
the spectrum. It is used as an indication of the dominance of
a tone. For example, the spread increases as the tones diverge
and decreases as the tones converge.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralSpread(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
self.centroid = SpectralCentroid(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
spectrum_type=spectrum_type,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
u_1 = self.centroid(x)
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
n_fft = (x.shape[2] - 1) * 2
freqs = torch.fft.rfftfreq(n_fft, d=1./self.sample_rate, device=x.device)
freqs = (freqs[None, None, :] - u_1).pow(2)
spread = (
(spectr * freqs).sum(dim=-1, keepdim=True)
/ spectr.sum(dim=-1, keepdim=True)
) ** 0.5
return spread
class SpectralSkewness(torch.nn.Module):
"""
The spectral skewness measures symmetry around the centroid. In phonetics,
spectral skewness is often referred to as spectral tilt and is used with
other spectral moments to distinguish the place of articulation
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralSkewness(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
self.centroid = SpectralCentroid(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
spectrum_type=spectrum_type,
)
self.spread = SpectralSpread(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
spectrum_type=spectrum_type,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
u_1 = self.centroid(x)
u_2 = self.spread(x)
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
n_fft = (x.shape[2] - 1) * 2
freqs = torch.fft.rfftfreq(n_fft, d=1./self.sample_rate, device=x.device)
freqs = (freqs[None, None, :] - u_1).pow(3)
skewness = (
(spectr * freqs).sum(dim=-1, keepdim=True)
/ (u_2.pow(3) * spectr.sum(dim=-1, keepdim=True))
)
return skewness
class SpectralKurtosis(torch.nn.Module):
"""
The spectral kurtosis measures the flatness, or non-Gaussianity,
of the spectrum around its centroid. Conversely, it is used to
indicate the peakiness of a spectrum. For example, as the white
noise is increased on the speech signal, the kurtosis decreases,
indicating a less peaky spectrum.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralKurtosis(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
self.centroid = SpectralCentroid(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
spectrum_type=spectrum_type,
)
self.spread = SpectralSpread(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
spectrum_type=spectrum_type,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
u_1 = self.centroid(x)
u_2 = self.spread(x)
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
n_fft = (x.shape[2] - 1) * 2
freqs = torch.fft.rfftfreq(n_fft, d=1./self.sample_rate, device=x.device)
freqs = (freqs[None, None, :] - u_1).pow(4)
kurtosis = (
(spectr * freqs).sum(dim=-1, keepdim=True)
/ (u_2.pow(4) * spectr.sum(dim=-1, keepdim=True))
)
return kurtosis
class SpectralRolloffPoint(torch.nn.Module):
"""
Alternative implementation of librosa.feature.spectral_rolloff.
The spectral rolloff point measures the bandwidth of the audio signal
by determining the frequency bin under which a given percentage of
the total energy exists. It has been used to distinguish between
voiced and unvoiced speech, speech/music discrimination, etc.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
roll_threshold : float
The threshold of rolloff point, specified as a scalar between zero and one.
Usually 0.85 or 0.95, default to 0.95.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralRolloffPoint(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
roll_threshold=0.95,
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.threshold = roll_threshold
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
if not 0.0 < self.threshold < 1.0:
raise ValueError("roll_threshold must specift as a scalar between 0 and 1.")
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
n_fft = (x.shape[2] - 1) * 2
freqs = torch.fft.rfftfreq(n_fft, d=1./self.sample_rate, device=x.device)
total_energy = torch.cumsum(spectr, dim=-1)
threshold = self.threshold * total_energy[..., -1]
idx = torch.where(total_energy > threshold[..., None], 1., float("nan"))
rolloff = torch.topk(idx * freqs, 1, largest=False, dim=-1).values
return rolloff
class SpectralCrest(torch.nn.Module):
"""
Spectral crest is an indication of the peakiness of the spectrum.
A higher spectral crest indicates more tonality, while a lower
spectral crest indicates more noise.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralCrest(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
crest = (
spectr.max(dim=-1, keepdim=True).values
/ spectr.mean(dim=-1, keepdim=True)
)
return crest
class SpectralFlux(torch.nn.Module):
"""
Spectral flux is a measure of the variability of the spectrum over
time. It is popularly used in onset detection and audio segmentation.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
norm_type : int
Norm type used to calculate flux, specified as 2 or 1. Default to 2.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralFlux(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
norm_type=2,
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.p = norm_type
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
normalized_stft=True,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
flux = torch.sum(
(spectr[:, 1:, :] - spectr[:, :-1, :]).abs().pow(self.p),
dim=-1,
keepdim=True,
) ** (1. / self.p)
flux /= spectr.shape[-1]
offset = torch.zeros((flux.shape[0], 1, flux.shape[2]), device=x.device)
flux = torch.concat((offset, flux), dim=1)
return flux
class SpectralSlope(torch.nn.Module):
"""
WIP
<intro>
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralSlope(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
n_fft = (x.shape[2] - 1) * 2
freqs = torch.fft.rfftfreq(n_fft, d=1./self.sample_rate, device=x.device)
freqs -= freqs.mean()
spectr -= spectr.mean(dim=-1, keepdim=True)
slope = (
(freqs[None, None, :] * spectr).sum(dim=-1, keepdim=True)
/ freqs.pow(2).sum()
)
return slope
class SpectralFlatness(torch.nn.Module):
"""
Spectral flatness is a measure to quantify how much noise-like a sound is.
A high spectral flatness (closer to 1.0) indicates the spectrum is similar
to white noise. It is often converted to decibel.
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.
n_fft : int
Number of fft point of the STFT. It defines the frequency resolution
(n_fft should be <= than win_len).
window_fn : function
A function that takes an integer (number of samples) and outputs a
tensor to be multiplied with each window before fft.
spectrum_type : str
Spectrum type, specified as "power" or "magnitude":
"power": The spectral entropy is calculated for the one-sided power spectrum.
"magnitude": The spectral entropy is calculated for the one-sided magnitude spectrum.
Example
-------
>>> import torch
>>> compute_stft = STFT(sample_rate=16000)
>>> compute_feat = SpectralFlatness(sample_rate=16000)
>>> inputs = torch.randn([10, 16000])
>>> features = compute_feat(inputs)
>>> features.shape
... torch.Size([10, 101, 1])
>>> spectr = compute_stft(inputs)
>>> features = compute_feat(spectr)
>>> features.shape
... torch.Size([10, 101, 1])
"""
def __init__(
self,
sample_rate,
win_length=25,
hop_length=10,
n_fft=400,
window_fn=torch.hamming_window,
spectrum_type="power",
):
super().__init__()
self.sample_rate = sample_rate
self.spectrum_type = spectrum_type
self.eps = 1e-3
self.stft = STFT(
sample_rate=sample_rate,
win_length=win_length,
hop_length=hop_length,
n_fft=n_fft,
window_fn=window_fn,
)
def forward(self, x):
"""
x : tensor
The name-value arguments apply if x is a batch of time-domain
signals to transform. The tensor must have the format
(batch, time_step). If x is a batch of frequency-domain signal,
name-value arguments are ignored. The tensor must ave the format
(batch, time_step, n_fft/2 + 1, 2).
"""
if x.ndim == 2:
x = self.stft(x)
if self.spectrum_type == "magnitude":
spectr = spectral_magnitude(x, 0.5)
else:
spectr = spectral_magnitude(x)
geometric_mean = (spectr + self.eps).log().mean(dim=-1, keepdim=True).exp() - self.eps
arithmetic_mean = spectr.mean(dim=-1, keepdim=True)
flatness = -10. * (self.eps + geometric_mean / arithmetic_mean).log10()
return flatness
class LongTermSpectralFlatness(torch.nn.Module):
"""
WIP
http://link.springer.com/article/10.1186/1687-4722-2013-21
Arguments
---------
sample_rate : int
Sample rate of the input audio signal (e.g 16000).
win_length : float
Length (in ms) of the sliding window used to compute the STFT.
hop_length : float
Length (in ms) of the hope of the sliding window used to compute
the STFT.