-
Notifications
You must be signed in to change notification settings - Fork 1
/
matcher.py
262 lines (239 loc) · 10.4 KB
/
matcher.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
from pathlib import Path
import torch
import torch.nn as nn
import torch.nn.functional as F
import torchaudio
import torchaudio.transforms as T
from hifigan.models import Generator as HiFiGAN
from hifigan.utils import AttrDict
from torch import Tensor
from torchaudio.sox_effects import apply_effects_tensor
from wavlm.WavLM import WavLM
from knnvc_utils import generate_matrix_from_index
SPEAKER_INFORMATION_LAYER = 6
SPEAKER_INFORMATION_WEIGHTS = generate_matrix_from_index(SPEAKER_INFORMATION_LAYER)
SPEAKER_INFORMATION_LAYER_BASE = 3
SPEAKER_INFORMATION_WEIGHTS_BASE = generate_matrix_from_index(
SPEAKER_INFORMATION_LAYER_BASE
)
def fast_cosine_dist(
source_feats: Tensor, matching_pool: Tensor, device: str = "cpu"
) -> Tensor:
"""Like torch.cdist, but fixed dim=-1 and for cosine distance."""
source_norms = torch.norm(source_feats, p=2, dim=-1).to(device)
matching_norms = torch.norm(matching_pool, p=2, dim=-1)
dotprod = (
-torch.cdist(source_feats[None].to(device), matching_pool[None], p=2)[0] ** 2
+ source_norms[:, None] ** 2
+ matching_norms[None] ** 2
)
dotprod /= 2
dists = 1 - (dotprod / (source_norms[:, None] * matching_norms[None]))
return dists
class KNeighborsVC(nn.Module):
def __init__(
self,
wavlm: WavLM,
hifigan: HiFiGAN,
hifigan_cfg: AttrDict,
base: bool,
device="cuda",
) -> None:
"""kNN-VC matcher.
Arguments:
- `wavlm` : trained WavLM model
- `hifigan`: trained hifigan model
- `hifigan_cfg`: hifigan config to use for vocoding.
"""
super().__init__()
self.base = base
# set which features to extract from wavlm
self.weighting = torch.tensor(
SPEAKER_INFORMATION_WEIGHTS
if not base
else SPEAKER_INFORMATION_WEIGHTS_BASE,
device=device,
)[:, None]
# load hifigan
self.hifigan = hifigan.eval()
self.h = hifigan_cfg
# store wavlm
self.wavlm = wavlm.eval()
self.device = torch.device(device)
self.sr = self.h.sampling_rate
self.hop_length = 320
def get_matching_set(
self, wavs: list[Path] | list[Tensor], weights=None, vad_trigger_level=7
) -> Tensor:
"""Get concatenated wavlm features for the matching set using all waveforms in `wavs`,
specified as either a list of paths or list of loaded waveform tensors of
shape (channels, T), assumed to be of 16kHz sample rate.
Optionally specify custom WavLM feature weighting with `weights`.
"""
feats = []
for p in wavs:
feats.append(
self.get_features(
p,
weights=self.weighting if weights is None else weights,
vad_trigger_level=vad_trigger_level,
)
)
feats = torch.concat(feats, dim=0).cpu()
return feats
@torch.inference_mode()
def vocode(self, c: Tensor) -> Tensor:
"""Vocode features with hifigan. `c` is of shape (bs, seq_len, c_dim)"""
y_g_hat = self.hifigan(c)
y_g_hat = y_g_hat.squeeze(1)
return y_g_hat
@torch.inference_mode()
def get_features(self, path, weights=None, vad_trigger_level=0):
"""Returns features of `path` waveform as a tensor of shape (seq_len, dim), optionally perform VAD trimming
on start/end with `vad_trigger_level`.
"""
# load audio
if weights == None:
weights = self.weighting
if type(path) in [str, Path]:
x, sr = torchaudio.load(path, normalize=True)
else:
x: Tensor = path
sr = self.sr
if x.dim() == 1:
x = x[None]
if not sr == self.sr:
print(f"resample {sr} to {self.sr} in {path}")
x = torchaudio.functional.resample(x, orig_freq=sr, new_freq=self.sr)
sr = self.sr
# trim silence from front and back
if vad_trigger_level > 1e-3:
transform = T.Vad(sample_rate=sr, trigger_level=vad_trigger_level)
x_front_trim = transform(x)
# original way, disabled because it lacks windows support
# waveform_reversed, sr = apply_effects_tensor(x_front_trim, sr, [["reverse"]])
waveform_reversed = torch.flip(x_front_trim, (-1,))
waveform_reversed_front_trim = transform(waveform_reversed)
waveform_end_trim = torch.flip(waveform_reversed_front_trim, (-1,))
# waveform_end_trim, sr = apply_effects_tensor(
# waveform_reversed_front_trim, sr, [["reverse"]]
# )
x = waveform_end_trim
# extract the representation of each layer
wav_input_16khz = x.to(self.device)
if torch.allclose(weights, self.weighting):
# use fastpath
features = self.wavlm.extract_features(
wav_input_16khz,
output_layer=SPEAKER_INFORMATION_LAYER
if not self.base
else SPEAKER_INFORMATION_LAYER_BASE,
ret_layer_results=False,
)[0]
features = features.squeeze(0)
else:
# use slower weighted
rep, layer_results = self.wavlm.extract_features(
wav_input_16khz,
output_layer=self.wavlm.cfg.encoder_layers,
ret_layer_results=True,
)[0]
features = torch.cat(
[x.transpose(0, 1) for x, _ in layer_results], dim=0
) # (n_layers, seq_len, dim)
# save full sequence
features = (features * weights[:, None]).sum(dim=0) # (seq_len, dim)
return features
@torch.inference_mode()
def match_feat(
self,
query_seq: Tensor,
matching_set: Tensor,
synth_set: Tensor = None,
topk: int = 4,
target_duration: float | None = None,
device: str | None = None,
) -> Tensor:
"""Given `query_seq`, `matching_set`, and `synth_set` tensors of shape (N, dim), perform kNN regression matching
with k=`topk`. Inputs:
- `query_seq`: Tensor (N1, dim) of the input/source query features.
- `matching_set`: Tensor (N2, dim) of the matching set used as the 'training set' for the kNN algorithm.
- `synth_set`: optional Tensor (N2, dim) corresponding to the matching set. We use the matching set to assign each query
vector to a vector in the matching set, and then use the corresponding vector from the synth set during HiFiGAN synthesis.
By default, and for best performance, this should be identical to the matching set.
- `topk`: k in the kNN -- the number of nearest neighbors to average over.
- `tgt_loudness_db`: float db used to normalize the output volume. Set to None to disable.
- `target_duration`: if set to a float, interpolate resulting waveform duration to be equal to this value in seconds.
- `device`: if None, uses default device at initialization. Otherwise uses specified device
Returns:
- converted waveform of shape (T,)
"""
device = torch.device(device) if device is not None else self.device
if synth_set is None:
synth_set = matching_set.to(device)
else:
synth_set = synth_set.to(device)
matching_set = matching_set.to(device)
query_seq = query_seq.to(device)
if target_duration is not None:
target_samples = int(target_duration * self.sr)
scale_factor = (target_samples / self.hop_length) / query_seq.shape[
0
] # n_targ_feats / n_input_feats
query_seq = F.interpolate(
query_seq.T[None], scale_factor=scale_factor, mode="linear"
)[0].T
dists = fast_cosine_dist(query_seq, matching_set, device=device)
best = dists.topk(k=topk, largest=False, dim=-1)
out_feats = synth_set[best.indices].mean(dim=1)
return out_feats[None].to(device)
@torch.inference_mode()
def feat_to_wav(
self,
feature: Tensor,
tgt_loudness_db: float | None = -16,
):
prediction = self.vocode(feature).cpu().squeeze()
# normalization
if tgt_loudness_db is not None:
src_loudness = torchaudio.functional.loudness(
prediction[None], self.h.sampling_rate
)
tgt_loudness = tgt_loudness_db
pred_wav = torchaudio.functional.gain(
prediction, tgt_loudness - src_loudness
)
else:
pred_wav = prediction
return pred_wav
@torch.inference_mode()
def match(
self,
query_seq: Tensor,
matching_set: Tensor,
synth_set: Tensor = None,
topk: int = 4,
tgt_loudness_db: float | None = -16,
target_duration: float | None = None,
device: str | None = None,
) -> Tensor:
"""Given `query_seq`, `matching_set`, and `synth_set` tensors of shape (N, dim), perform kNN regression matching
with k=`topk`. Inputs:
- `query_seq`: Tensor (N1, dim) of the input/source query features.
- `matching_set`: Tensor (N2, dim) of the matching set used as the 'training set' for the kNN algorithm.
- `synth_set`: optional Tensor (N2, dim) corresponding to the matching set. We use the matching set to assign each query
vector to a vector in the matching set, and then use the corresponding vector from the synth set during HiFiGAN synthesis.
By default, and for best performance, this should be identical to the matching set.
- `topk`: k in the kNN -- the number of nearest neighbors to average over.
- `tgt_loudness_db`: float db used to normalize the output volume. Set to None to disable.
- `target_duration`: if set to a float, interpolate resulting waveform duration to be equal to this value in seconds.
- `device`: if None, uses default device at initialization. Otherwise uses specified device
Returns:
- converted waveform of shape (T,)
"""
return self.feat_to_wav(
self.match_feat(
query_seq, matching_set, synth_set, topk, target_duration, device
),
tgt_loudness_db,
)