Spaces:
Running
on
A10G
Running
on
A10G
Uplaod files
Browse files- tools/__init__.py +0 -0
- tools/__pycache__/__init__.cpython-311.pyc +0 -0
- tools/__pycache__/__init__.cpython-37.pyc +0 -0
- tools/__pycache__/mix.cpython-311.pyc +0 -0
- tools/__pycache__/mix.cpython-37.pyc +0 -0
- tools/__pycache__/torch_tools.cpython-311.pyc +0 -0
- tools/__pycache__/torch_tools.cpython-37.pyc +0 -0
- tools/mix.py +51 -0
- tools/torch_tools.py +128 -0
tools/__init__.py
ADDED
File without changes
|
tools/__pycache__/__init__.cpython-311.pyc
ADDED
Binary file (151 Bytes). View file
|
|
tools/__pycache__/__init__.cpython-37.pyc
ADDED
Binary file (121 Bytes). View file
|
|
tools/__pycache__/mix.cpython-311.pyc
ADDED
Binary file (3.63 kB). View file
|
|
tools/__pycache__/mix.cpython-37.pyc
ADDED
Binary file (1.66 kB). View file
|
|
tools/__pycache__/torch_tools.cpython-311.pyc
ADDED
Binary file (7.25 kB). View file
|
|
tools/__pycache__/torch_tools.cpython-37.pyc
ADDED
Binary file (3.74 kB). View file
|
|
tools/mix.py
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import numpy as np
|
2 |
+
|
3 |
+
|
4 |
+
def a_weight(fs, n_fft, min_db=-80.0):
|
5 |
+
freq = np.linspace(0, fs // 2, n_fft // 2 + 1)
|
6 |
+
freq_sq = np.power(freq, 2)
|
7 |
+
freq_sq[0] = 1.0
|
8 |
+
weight = 2.0 + 20.0 * (2 * np.log10(12194) + 2 * np.log10(freq_sq)
|
9 |
+
- np.log10(freq_sq + 12194 ** 2)
|
10 |
+
- np.log10(freq_sq + 20.6 ** 2)
|
11 |
+
- 0.5 * np.log10(freq_sq + 107.7 ** 2)
|
12 |
+
- 0.5 * np.log10(freq_sq + 737.9 ** 2))
|
13 |
+
weight = np.maximum(weight, min_db)
|
14 |
+
|
15 |
+
return weight
|
16 |
+
|
17 |
+
|
18 |
+
def compute_gain(sound, fs, min_db=-80.0, mode="A_weighting"):
|
19 |
+
if fs == 16000:
|
20 |
+
n_fft = 2048
|
21 |
+
elif fs == 44100:
|
22 |
+
n_fft = 4096
|
23 |
+
else:
|
24 |
+
raise Exception("Invalid fs {}".format(fs))
|
25 |
+
stride = n_fft // 2
|
26 |
+
|
27 |
+
gain = []
|
28 |
+
for i in range(0, len(sound) - n_fft + 1, stride):
|
29 |
+
if mode == "RMSE":
|
30 |
+
g = np.mean(sound[i: i + n_fft] ** 2)
|
31 |
+
elif mode == "A_weighting":
|
32 |
+
spec = np.fft.rfft(np.hanning(n_fft + 1)[:-1] * sound[i: i + n_fft])
|
33 |
+
power_spec = np.abs(spec) ** 2
|
34 |
+
a_weighted_spec = power_spec * np.power(10, a_weight(fs, n_fft) / 10)
|
35 |
+
g = np.sum(a_weighted_spec)
|
36 |
+
else:
|
37 |
+
raise Exception("Invalid mode {}".format(mode))
|
38 |
+
gain.append(g)
|
39 |
+
|
40 |
+
gain = np.array(gain)
|
41 |
+
gain = np.maximum(gain, np.power(10, min_db / 10))
|
42 |
+
gain_db = 10 * np.log10(gain)
|
43 |
+
return gain_db
|
44 |
+
|
45 |
+
|
46 |
+
def mix(sound1, sound2, r, fs):
|
47 |
+
gain1 = np.max(compute_gain(sound1, fs)) # Decibel
|
48 |
+
gain2 = np.max(compute_gain(sound2, fs))
|
49 |
+
t = 1.0 / (1 + np.power(10, (gain1 - gain2) / 20.) * (1 - r) / r)
|
50 |
+
sound = ((sound1 * t + sound2 * (1 - t)) / np.sqrt(t ** 2 + (1 - t) ** 2))
|
51 |
+
return sound
|
tools/torch_tools.py
ADDED
@@ -0,0 +1,128 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import torch
|
2 |
+
import torchaudio
|
3 |
+
import random
|
4 |
+
import itertools
|
5 |
+
import numpy as np
|
6 |
+
from tools.mix import mix
|
7 |
+
|
8 |
+
|
9 |
+
def normalize_wav(waveform):
|
10 |
+
waveform = waveform - torch.mean(waveform)
|
11 |
+
waveform = waveform / (torch.max(torch.abs(waveform)) + 1e-8)
|
12 |
+
return waveform * 0.5
|
13 |
+
|
14 |
+
|
15 |
+
def pad_wav(waveform, segment_length):
|
16 |
+
waveform_length = len(waveform)
|
17 |
+
|
18 |
+
if segment_length is None or waveform_length == segment_length:
|
19 |
+
return waveform
|
20 |
+
elif waveform_length > segment_length:
|
21 |
+
return waveform[:segment_length]
|
22 |
+
else:
|
23 |
+
pad_wav = torch.zeros(segment_length - waveform_length).to(waveform.device)
|
24 |
+
waveform = torch.cat([waveform, pad_wav])
|
25 |
+
return waveform
|
26 |
+
|
27 |
+
|
28 |
+
def _pad_spec(fbank, target_length=1024):
|
29 |
+
batch, n_frames, channels = fbank.shape
|
30 |
+
p = target_length - n_frames
|
31 |
+
if p > 0:
|
32 |
+
pad = torch.zeros(batch, p, channels).to(fbank.device)
|
33 |
+
fbank = torch.cat([fbank, pad], 1)
|
34 |
+
elif p < 0:
|
35 |
+
fbank = fbank[:, :target_length, :]
|
36 |
+
|
37 |
+
if channels % 2 != 0:
|
38 |
+
fbank = fbank[:, :, :-1]
|
39 |
+
|
40 |
+
return fbank
|
41 |
+
|
42 |
+
|
43 |
+
def read_wav_file(filename, segment_length):
|
44 |
+
waveform, sr = torchaudio.load(filename) # Faster!!!
|
45 |
+
waveform = torchaudio.functional.resample(waveform, orig_freq=sr, new_freq=16000)[0]
|
46 |
+
try:
|
47 |
+
waveform = normalize_wav(waveform)
|
48 |
+
except:
|
49 |
+
print ("Exception normalizing:", filename)
|
50 |
+
waveform = torch.ones(160000)
|
51 |
+
waveform = pad_wav(waveform, segment_length).unsqueeze(0)
|
52 |
+
waveform = waveform / torch.max(torch.abs(waveform))
|
53 |
+
waveform = 0.5 * waveform
|
54 |
+
return waveform
|
55 |
+
|
56 |
+
|
57 |
+
def get_mel_from_wav(audio, _stft):
|
58 |
+
audio = torch.nan_to_num(torch.clip(audio, -1, 1))
|
59 |
+
audio = torch.autograd.Variable(audio, requires_grad=False)
|
60 |
+
melspec, log_magnitudes_stft, energy = _stft.mel_spectrogram(audio)
|
61 |
+
return melspec, log_magnitudes_stft, energy
|
62 |
+
|
63 |
+
|
64 |
+
def wav_to_fbank(paths, target_length=1024, fn_STFT=None):
|
65 |
+
assert fn_STFT is not None
|
66 |
+
|
67 |
+
waveform = torch.cat([read_wav_file(path, target_length * 160) for path in paths], 0) # hop size is 160
|
68 |
+
|
69 |
+
fbank, log_magnitudes_stft, energy = get_mel_from_wav(waveform, fn_STFT)
|
70 |
+
fbank = fbank.transpose(1, 2)
|
71 |
+
log_magnitudes_stft = log_magnitudes_stft.transpose(1, 2)
|
72 |
+
|
73 |
+
fbank, log_magnitudes_stft = _pad_spec(fbank, target_length), _pad_spec(
|
74 |
+
log_magnitudes_stft, target_length
|
75 |
+
)
|
76 |
+
|
77 |
+
return fbank, log_magnitudes_stft, waveform
|
78 |
+
|
79 |
+
|
80 |
+
def uncapitalize(s):
|
81 |
+
if s:
|
82 |
+
return s[:1].lower() + s[1:]
|
83 |
+
else:
|
84 |
+
return ""
|
85 |
+
|
86 |
+
|
87 |
+
def mix_wavs_and_captions(path1, path2, caption1, caption2, target_length=1024):
|
88 |
+
sound1 = read_wav_file(path1, target_length * 160)[0].numpy()
|
89 |
+
sound2 = read_wav_file(path2, target_length * 160)[0].numpy()
|
90 |
+
mixed_sound = mix(sound1, sound2, 0.5, 16000).reshape(1, -1)
|
91 |
+
mixed_caption = "{} and {}".format(caption1, uncapitalize(caption2))
|
92 |
+
return mixed_sound, mixed_caption
|
93 |
+
|
94 |
+
|
95 |
+
def augment(paths, texts, num_items=4, target_length=1024):
|
96 |
+
mixed_sounds, mixed_captions = [], []
|
97 |
+
combinations = list(itertools.combinations(list(range(len(texts))), 2))
|
98 |
+
random.shuffle(combinations)
|
99 |
+
if len(combinations) < num_items:
|
100 |
+
selected_combinations = combinations
|
101 |
+
else:
|
102 |
+
selected_combinations = combinations[:num_items]
|
103 |
+
|
104 |
+
for (i, j) in selected_combinations:
|
105 |
+
new_sound, new_caption = mix_wavs_and_captions(paths[i], paths[j], texts[i], texts[j], target_length)
|
106 |
+
mixed_sounds.append(new_sound)
|
107 |
+
mixed_captions.append(new_caption)
|
108 |
+
|
109 |
+
waveform = torch.tensor(np.concatenate(mixed_sounds, 0))
|
110 |
+
waveform = waveform / torch.max(torch.abs(waveform))
|
111 |
+
waveform = 0.5 * waveform
|
112 |
+
|
113 |
+
return waveform, mixed_captions
|
114 |
+
|
115 |
+
|
116 |
+
def augment_wav_to_fbank(paths, texts, num_items=4, target_length=1024, fn_STFT=None):
|
117 |
+
assert fn_STFT is not None
|
118 |
+
|
119 |
+
waveform, captions = augment(paths, texts)
|
120 |
+
fbank, log_magnitudes_stft, energy = get_mel_from_wav(waveform, fn_STFT)
|
121 |
+
fbank = fbank.transpose(1, 2)
|
122 |
+
log_magnitudes_stft = log_magnitudes_stft.transpose(1, 2)
|
123 |
+
|
124 |
+
fbank, log_magnitudes_stft = _pad_spec(fbank, target_length), _pad_spec(
|
125 |
+
log_magnitudes_stft, target_length
|
126 |
+
)
|
127 |
+
|
128 |
+
return fbank, log_magnitudes_stft, waveform, captions
|