-
Notifications
You must be signed in to change notification settings - Fork 0
/
train_concat2_xumx.py
executable file
·527 lines (438 loc) · 18.9 KB
/
train_concat2_xumx.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
import os
import argparse
import json
import random
import copy
import tqdm
import itertools
import numpy as np
import sklearn.preprocessing
import torch
import pytorch_lightning as pl
from pytorch_lightning.callbacks import ModelCheckpoint, EarlyStopping
from asteroid.engine.system import System
from asteroid.engine.optimizers import make_optimizer
from pytorch_lightning.loggers import WandbLogger
from models import Leakage_Concat2_XUMX
from models.leakage_concat2_xumx import _STFT, _Spectrogram
from asteroid.losses import singlesrc_mse
from torch.nn.modules.loss import _Loss
from torch import nn
from datasets import dataloader
from pathlib import Path
from operator import itemgetter
import pdb
# Keys which are not in the conf.yml file can be added here.
# In the hierarchical dictionary created when parsing, the key `key` can be
# found at dic['main_args'][key]
# By default train.py will use all available GPUs.
parser = argparse.ArgumentParser()
def bandwidth_to_max_bin(rate, n_fft, bandwidth):
freqs = np.linspace(0, float(rate) / 2, n_fft // 2 + 1, endpoint=True)
return np.max(np.where(freqs <= bandwidth)[0]) + 1
def get_statistics(args, dataset):
scaler = sklearn.preprocessing.StandardScaler()
spec = torch.nn.Sequential(
_STFT(window_length=args.window_length, n_fft=args.in_chan, n_hop=args.nhop),
_Spectrogram(spec_power=args.spec_power, mono=True),
)
dataset_scaler = copy.deepcopy(dataset)
dataset_scaler.samples_per_track = 1
dataset_scaler.random_segments = False
dataset_scaler.random_track_mix = False
dataset_scaler.segment = False
pbar = tqdm.tqdm(range(len(dataset_scaler)))
for ind in pbar:
x, _ = dataset_scaler[ind]
pbar.set_description("Compute dataset statistics")
X = spec(x[None, ...])[0]
scaler.partial_fit(np.squeeze(X))
# set inital input scaler values
std = np.maximum(scaler.scale_, 1e-4 * np.max(scaler.scale_))
return scaler.mean_, std
#s hat expects the estimated outputs stacked.
#where is the gt_spec obtained from?
def freq_domain_loss(s_hat, gt_spec, combination=True):
"""Calculate frequency-domain loss between estimated and reference spectrograms.
MSE between target and estimated target spectrograms is adopted as frequency-domain loss.
If you set ``loss_combine_sources: yes'' in conf.yml, computes loss for all possible
combinations of 1, ..., nb_sources-1 instruments.
Input:
estimated spectrograms
(Sources, Freq. bins, Batch size, Channels, Frames)
reference spectrograms
(Freq. bins, Batch size, Sources x Channels, Frames)
whether use combination or not (optional)
Output:
calculated frequency-domain loss
"""
n_src = len(s_hat)
idx_list = [i for i in range(n_src)]
inferences = []
refrences = []
for i, s in enumerate(s_hat):
inferences.append(s)
refrences.append(gt_spec[..., 2 * i : 2 * i + 2, :])
assert inferences[0].shape == refrences[0].shape
_loss_mse = 0.0
cnt = 0.0
for i in range(n_src):
_loss_mse += singlesrc_mse(inferences[i], refrences[i]).mean()
cnt += 1.0
# If Combination is True, calculate the expected combinations.
if combination:
for c in range(2, n_src):
patterns = list(itertools.combinations(idx_list, c))
for indices in patterns:
tmp_loss = singlesrc_mse(
sum(itemgetter(*indices)(inferences)),
sum(itemgetter(*indices)(refrences)),
).mean()
_loss_mse += tmp_loss
cnt += 1.0
_loss_mse /= cnt
return _loss_mse
def time_domain_loss(mix, time_hat, gt_time, combination=True):
"""Calculate weighted time-domain loss between estimated and reference time signals.
weighted SDR [1] between target and estimated target signals is adopted as time-domain loss.
If you set ``loss_combine_sources: yes'' in conf.yml, computes loss for all possible
combinations of 1, ..., nb_sources-1 instruments.
Input:
mixture time signal
(Batch size, Channels, Time Length (samples))
estimated time signals
(Sources, Batch size, Channels, Time Length (samples))
reference time signals
(Batch size, Sources x Channels, Time Length (samples))
whether use combination or not (optional)
Output:
calculated time-domain loss
References
- [1] : "Phase-aware Speech Enhancement with Deep Complex U-Net",
Hyeong-Seok Choi et al. https://arxiv.org/abs/1903.03107
"""
n_src, n_batch, n_channel, time_length = time_hat.shape
idx_list = [i for i in range(n_src)]
# Fix Length
mix = mix[Ellipsis, :time_length]
gt_time = gt_time[Ellipsis, :time_length]
# Prepare Data and Fix Shape
mix_ref = [mix]
mix_ref.extend([gt_time[..., 2 * i : 2 * i + 2, :] for i in range(n_src)])
mix_ref = torch.stack(mix_ref)
mix_ref = mix_ref.view(-1, time_length)
time_hat = time_hat.view(n_batch * n_channel * time_hat.shape[0], time_hat.shape[-1])
# If Combination is True, calculate the expected combinations.
if combination:
indices = []
for c in range(2, n_src):
indices.extend(list(itertools.combinations(idx_list, c)))
for tr in indices:
sp = [n_batch * n_channel * (tr[i] + 1) for i in range(len(tr))]
ep = [n_batch * n_channel * (tr[i] + 2) for i in range(len(tr))]
spi = [n_batch * n_channel * tr[i] for i in range(len(tr))]
epi = [n_batch * n_channel * (tr[i] + 1) for i in range(len(tr))]
tmp = sum([mix_ref[sp[i] : ep[i], ...].clone() for i in range(len(tr))])
tmpi = sum([time_hat[spi[i] : epi[i], ...].clone() for i in range(len(tr))])
mix_ref = torch.cat([mix_ref, tmp], dim=0)
time_hat = torch.cat([time_hat, tmpi], dim=0)
mix_t = mix_ref[: n_batch * n_channel, Ellipsis].repeat(n_src + len(indices), 1)
refrences_t = mix_ref[n_batch * n_channel :, Ellipsis]
else:
mix_t = mix_ref[: n_batch * n_channel, Ellipsis].repeat(n_src, 1)
refrences_t = mix_ref[n_batch * n_channel :, Ellipsis]
# Calculation
_loss_sdr = weighted_sdr(time_hat, refrences_t, mix_t)
return 1.0 + _loss_sdr
def weighted_sdr(input, gt, mix, weighted=True, eps=1e-10):
# ``input'', ``gt'' and ``mix'' should be (Batch, Time Length)
assert input.shape == gt.shape
assert mix.shape == gt.shape
ns = mix - gt
ns_hat = mix - input
if weighted:
alpha_num = (gt * gt).sum(1, keepdims=True)
alpha_denom = (gt * gt).sum(1, keepdims=True) + (ns * ns).sum(1, keepdims=True)
alpha = alpha_num / (alpha_denom + eps)
else:
alpha = 0.5
# Target
num_cln = (input * gt).sum(1, keepdims=True)
denom_cln = torch.sqrt(eps + (input * input).sum(1, keepdims=True)) * torch.sqrt(
eps + (gt * gt).sum(1, keepdims=True)
)
sdr_cln = num_cln / (denom_cln + eps)
# Noise
num_noise = (ns * ns_hat).sum(1, keepdims=True)
denom_noise = torch.sqrt(eps + (ns_hat * ns_hat).sum(1, keepdims=True)) * torch.sqrt(
eps + (ns * ns).sum(1, keepdims=True)
)
sdr_noise = num_noise / (denom_noise + eps)
return torch.mean(-alpha * sdr_cln - (1.0 - alpha) * sdr_noise)
class MultiDomainLoss(_Loss):
"""A class for calculating loss functions of X-UMX.
Args:
window_length (int): The length in samples of window function to use in STFT.
in_chan (int): Number of input channels, should be equal to
STFT size and STFT window length in samples.
n_hop (int): STFT hop length in samples.
spec_power (int): Exponent for spectrogram calculation.
nb_channels (int): set number of channels for model (1 for mono
(spectral downmix is applied,) 2 for stereo).
loss_combine_sources (bool): Set to true if you are using the combination scheme
proposed in [1]. If you select ``loss_combine_sources: yes'' via
conf.yml, this is set as True.
loss_use_multidomain (bool): Set to true if you are using a frequency- and time-domain
losses collaboratively, i.e., Multi Domain Loss (MDL) proposed in [1].
If you select ``loss_use_multidomain: yes'' via conf.yml, this is set as True.
mix_coef (float): A mixing parameter for multi domain losses
References
[1] "All for One and One for All: Improving Music Separation by Bridging
Networks", Ryosuke Sawata, Stefan Uhlich, Shusuke Takahashi and Yuki Mitsufuji.
https://arxiv.org/abs/2010.04228 (and ICASSP 2021)
"""
def __init__(
self,
window_length,
in_chan,
n_hop,
spec_power,
nb_channels,
loss_combine_sources,
loss_use_multidomain,
mix_coef,
):
super().__init__()
self.transform = nn.Sequential(
_STFT(window_length=window_length, n_fft=in_chan, n_hop=n_hop),
_Spectrogram(spec_power=spec_power, mono=(nb_channels == 1)),
)
self._combi = loss_combine_sources
self._multi = loss_use_multidomain
self.coef = mix_coef
print("Combination Loss: {}".format(self._combi))
if self._multi:
print(
"Multi Domain Loss: {}, scaling parameter for time-domain loss={}".format(
self._multi, self.coef
)
)
else:
print("Multi Domain Loss: {}".format(self._multi))
self.cnt = 0
def forward(self, est_targets, targets, return_est=False, **kwargs):
"""est_targets (list) has 2 elements:
[0]->Estimated Spec. : (Sources, Frames, Batch size, Channels, Freq. bins)
[1]->Estimated Signal: (Sources, Batch size, Channels, Time Length)
targets: (Batch, Source, Channels, TimeLen)
"""
#pdb.set_trace()
spec_hat = est_targets[0]
time_hat = est_targets[1]
# Fix shape and apply transformation of targets
n_batch, n_src, n_channel, time_length = targets.shape
targets = targets.view(n_batch, n_src * n_channel, time_length)
Y = self.transform(targets)[0]
#import pdb
#pdb.set_trace()
if self._multi:
n_src = spec_hat.shape[0]
mixture_t = sum([targets[:, 2 * i : 2 * i + 2, ...] for i in range(n_src)])
loss_f = freq_domain_loss(spec_hat, Y, combination=self._combi)
loss_t = time_domain_loss(mixture_t, time_hat, targets, combination=self._combi)
loss = float(self.coef) * loss_t + loss_f
else:
loss = freq_domain_loss(spec_hat, Y, combination=self._combi)
return loss
class XUMXManager(System):
"""A class for X-UMX systems inheriting the base system class of lightning.
The difference from base class is specialized for X-UMX to calculate
validation loss preventing the GPU memory over flow.
Args:
model (torch.nn.Module): Instance of model.
optimizer (torch.optim.Optimizer): Instance or list of optimizers.
loss_func (callable): Loss function with signature
(est_targets, targets).
train_loader (torch.utils.data.DataLoader): Training dataloader.
val_loader (torch.utils.data.DataLoader): Validation dataloader.
scheduler (torch.optim.lr_scheduler._LRScheduler): Instance, or list
of learning rate schedulers. Also supports dict or list of dict as
``{"interval": "step", "scheduler": sched}`` where ``interval=="step"``
for step-wise schedulers and ``interval=="epoch"`` for classical ones.
config: Anything to be saved with the checkpoints during training.
The config dictionary to re-instantiate the run for example.
val_dur (float): When calculating validation loss, the loss is calculated
per this ``val_dur'' in seconds on GPU to prevent memory overflow.
For more info on its methods, properties and hooks, have a look at lightning's docs:
https://pytorch-lightning.readthedocs.io/en/stable/lightning_module.html#lightningmodule-api
"""
default_monitor: str = "val_loss"
def __init__(
self,
model,
optimizer,
loss_func,
train_loader,
val_loader=None,
scheduler=None,
config=None,
val_dur=None,
):
#config["data"].pop("sources")
#config["data"].pop("source_augmentations")
#config["data"].pop("targets")
config["data"].pop("inputs")
config["data"].pop("outputs")
config["data"].pop("source_augmentations")
super().__init__(model, optimizer, loss_func, train_loader, val_loader, scheduler, config)
self.val_dur_samples = model.sample_rate * val_dur
def validation_step(self, batch, batch_nb):
"""
We calculate the ``validation loss'' by splitting each song into
smaller chunks in order to prevent GPU out-of-memory errors.
The length of each chunk is given by ``self.val_dur_samples'' which is
computed from ``sample_rate [Hz]'' and ``val_dur [seconds]'' which are
both set in conf.yml.
"""
sp = 0
dur_samples = int(self.val_dur_samples)
cnt = 0
loss_tmp = 0.0
while 1:
batch_tmp = [
batch[0][Ellipsis, sp : sp + dur_samples],
batch[1][Ellipsis, sp : sp + dur_samples],
]
loss_tmp += self.common_step(batch_tmp, batch_nb, train=False)
cnt += 1
sp += dur_samples
if batch_tmp[0].shape[-1] < dur_samples or batch[0].shape[-1] == cnt * dur_samples:
break
loss = loss_tmp / cnt
self.log("val_loss", loss, on_epoch=True, prog_bar=True)
def main(conf, args):
wandb_logger = WandbLogger(project="leakage_removal")
# Set seed for random
torch.manual_seed(args.seed)
random.seed(args.seed)
# create output dir if not exist
exp_dir = Path(args.output)
exp_dir.mkdir(parents=True, exist_ok=True)
# Load Datasets
train_dataset, valid_dataset = dataloader.load_datasets(parser, args)
dataloader_kwargs = (
{"num_workers": args.num_workers, "pin_memory": True} if torch.cuda.is_available() else {}
)
train_sampler = torch.utils.data.DataLoader(
train_dataset, batch_size=args.batch_size, shuffle=True, **dataloader_kwargs
)
valid_sampler = torch.utils.data.DataLoader(valid_dataset, batch_size=1, **dataloader_kwargs)
# Define model and optimizer
if args.pretrained is not None:
scaler_mean = None
scaler_std = None
else:
scaler_mean, scaler_std = get_statistics(args, train_dataset)
max_bin = bandwidth_to_max_bin(train_dataset.sample_rate, args.in_chan, args.bandwidth)
x_unmix = Leakage_Concat_XUMX(
window_length=args.window_length,
input_mean=scaler_mean,
input_scale=scaler_std,
nb_channels=args.nb_channels,
hidden_size=args.hidden_size,
in_chan=args.in_chan,
n_hop=args.nhop,
outputs=args.outputs,
max_bin=max_bin,
bidirectional=args.bidirectional,
sample_rate=train_dataset.sample_rate,
spec_power=args.spec_power,
return_time_signals=True if args.loss_use_multidomain else False,
)
#pdb.set_trace()
optimizer = make_optimizer(
x_unmix.parameters(), lr=args.lr, optimizer="adam", weight_decay=args.weight_decay
)
# Define scheduler
scheduler = torch.optim.lr_scheduler.ReduceLROnPlateau(
optimizer, factor=args.lr_decay_gamma, patience=args.lr_decay_patience, cooldown=10
)
# Save config
#conf_path = os.path.join(exp_dir, "conf.yml")
#with open(conf_path, "w") as outfile:
# yaml.safe_dump(conf, outfile)
es = EarlyStopping(monitor="val_loss", mode="min", patience=args.patience, verbose=True)
# Define Loss function.
loss_func = MultiDomainLoss(
window_length=args.window_length,
in_chan=args.in_chan,
n_hop=args.nhop,
spec_power=args.spec_power,
nb_channels=args.nb_channels,
loss_combine_sources=args.loss_combine_sources,
loss_use_multidomain=args.loss_use_multidomain,
mix_coef=args.mix_coef,
)
system = XUMXManager(
model=x_unmix,
loss_func=loss_func,
optimizer=optimizer,
train_loader=train_sampler,
val_loader=valid_sampler,
scheduler=scheduler,
config=conf,
val_dur=args.val_dur,
)
#just a dump of the system parameters for later checkpoint reloads
torch.save(x_unmix.serialize(), os.path.join(exp_dir, 'serialized_model'))
torch.save(train_dataset.get_infos(), os.path.join(exp_dir, 'train_data_info_dict'))
# Define callbacks
callbacks = []
checkpoint_dir = os.path.join(exp_dir, "checkpoints/")
checkpoint = ModelCheckpoint(
checkpoint_dir, monitor="val_loss", mode="min", save_top_k=5, verbose=True
)
callbacks.append(checkpoint)
callbacks.append(es)
# Don't ask GPU if they are not available.
gpus = -1 if torch.cuda.is_available() else None
distributed_backend = "ddp" if torch.cuda.is_available() else None
trainer = pl.Trainer(
max_epochs=args.epochs,
callbacks=callbacks,
default_root_dir=exp_dir,
gpus=gpus,
logger=wandb_logger,
#distributed_backend=distributed_backend,
limit_train_batches=1.0, # Useful for fast experiment
)
#pdb.set_trace()
trainer.fit(system)
#pdb.set_trace()
best_k = {k: v.item() for k, v in checkpoint.best_k_models.items()}
with open(os.path.join(exp_dir, "best_k_models.json"), "w") as f:
json.dump(best_k, f, indent=0)
state_dict = torch.load(checkpoint.best_model_path)
system.load_state_dict(state_dict=state_dict["state_dict"])
system.cpu()
#pdb.set_trace()
to_save = system.model.serialize()
to_save.update(train_dataset.get_infos())
torch.save(to_save, os.path.join(exp_dir, "best_model.pth"))
if __name__ == "__main__":
import yaml
from asteroid.utils import prepare_parser_from_dict, parse_args_as_dict
# We start with opening the config file conf.yml as a dictionary from
# which we can create parsers. Each top level key in the dictionary defined
# by the YAML file creates a group in the parser.
with open("cfg/conf.yml") as f:
def_conf = yaml.safe_load(f)
parser = prepare_parser_from_dict(def_conf, parser=parser)
# Arguments are then parsed into a hierarchical dictionary (instead of
# flat, as returned by argparse) to facilitate calls to the different
# asteroid methods (see in main).
# plain_args is the direct output of parser.parse_args() and contains all
# the attributes in an non-hierarchical structure. It can be useful to also
# have it so we included it here.
arg_dic, plain_args = parse_args_as_dict(parser, return_plain_args=True)
main(arg_dic, plain_args)