forked from santi-pdp/segan
-
Notifications
You must be signed in to change notification settings - Fork 2
/
model.py
819 lines (747 loc) · 34.5 KB
/
model.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
from __future__ import print_function
import tensorflow as tf
from tensorflow.contrib.layers import batch_norm, fully_connected, flatten
from tensorflow.contrib.layers import xavier_initializer
from scipy.io import wavfile
from generator import *
from discriminator import *
import numpy as np
from data_loader import read_and_decode, de_emph
from bnorm import VBN
from ops import *
import timeit
import os
class Model(object):
def __init__(self, name='BaseModel'):
self.name = name
def save(self, save_path, step):
model_name = self.name
if not os.path.exists(save_path):
os.makedirs(save_path)
if not hasattr(self, 'saver'):
self.saver = tf.train.Saver()
self.saver.save(
self.sess, os.path.join(save_path, model_name), global_step=step)
def load(self, save_path, model_file=None):
if not os.path.exists(save_path):
print('[!] Checkpoints path does not exist...')
return False
print('[*] Reading checkpoints...')
if model_file is None:
ckpt = tf.train.get_checkpoint_state(save_path)
if ckpt and ckpt.model_checkpoint_path:
ckpt_name = os.path.basename(ckpt.model_checkpoint_path)
else:
return False
else:
ckpt_name = model_file
if not hasattr(self, 'saver'):
self.saver = tf.train.Saver()
self.saver.restore(self.sess, os.path.join(save_path, ckpt_name))
print('[*] Read {}'.format(ckpt_name))
return True
class SEGAN(Model):
""" Speech Enhancement Generative Adversarial Network """
def __init__(self, sess, args, devices, infer=False, name='SEGAN'):
super(SEGAN, self).__init__(name)
self.args = args
self.sess = sess
self.keep_prob = 1.
if infer:
self.keep_prob_var = tf.Variable(self.keep_prob, trainable=False)
else:
self.keep_prob = 0.5
self.keep_prob_var = tf.Variable(self.keep_prob, trainable=False)
self.batch_size = args.batch_size
self.epoch = args.epoch
self.d_label_smooth = args.d_label_smooth
self.devices = devices
self.z_dim = args.z_dim
self.z_depth = args.z_depth
# type of deconv
self.deconv_type = args.deconv_type
# specify if use biases or not
self.bias_downconv = args.bias_downconv
self.bias_deconv = args.bias_deconv
self.bias_D_conv = args.bias_D_conv
# clip D values
self.d_clip_weights = False
# apply VBN or regular BN?
self.disable_vbn = False
self.save_path = args.save_path
# num of updates to be applied to D before G
# this is k in original GAN paper (https://arxiv.org/abs/1406.2661)
self.disc_updates = 1
# set preemph factor
self.preemph = args.preemph
if self.preemph > 0:
print('*** Applying pre-emphasis of {} ***'.format(self.preemph))
else:
print('--- No pre-emphasis applied ---')
# canvas size
self.canvas_size = args.canvas_size
self.deactivated_noise = False
# dilation factors per layer (only in atrous conv G config)
self.g_dilated_blocks = [1, 2, 4, 8, 16, 32, 64, 128, 256, 512]
# num fmaps for AutoEncoder SEGAN (v1)
self.g_enc_depths = [16, 32, 32, 64, 64, 128, 128, 256, 256, 512, 1024]
# Define D fmaps
self.d_num_fmaps = [16, 32, 32, 64, 64, 128, 128, 256, 256, 512, 1024]
self.init_noise_std = args.init_noise_std
self.disc_noise_std = tf.Variable(self.init_noise_std, trainable=False)
self.disc_noise_std_summ = scalar_summary('disc_noise_std',
self.disc_noise_std)
self.e2e_dataset = args.e2e_dataset
# G's supervised loss weight
self.l1_weight = args.init_l1_weight
self.l1_lambda = tf.Variable(self.l1_weight, trainable=False)
self.deactivated_l1 = False
# define the functions
self.discriminator = discriminator
# register G non linearity
self.g_nl = args.g_nl
if args.g_type == 'ae':
self.generator = AEGenerator(self)
elif args.g_type == 'dwave':
self.generator = Generator(self)
else:
raise ValueError('Unrecognized G type {}'.format(args.g_type))
self.build_model(args)
def build_model(self, config):
all_d_grads = []
all_g_grads = []
d_opt = tf.train.RMSPropOptimizer(config.d_learning_rate)
g_opt = tf.train.RMSPropOptimizer(config.g_learning_rate)
# d_opt = tf.train.AdamOptimizer(
# config.d_learning_rate, beta1=config.beta_1)
# g_opt = tf.train.AdamOptimizer(
# config.g_learning_rate, beta1=config.beta_1)
with tf.variable_scope(tf.get_variable_scope()) as scope:
for idx, device in enumerate(self.devices):
with tf.device("/%s" % device):
with tf.name_scope("device_%s" % idx):
with variables_on_gpu0():
self.build_model_single_gpu(idx)
d_grads = d_opt.compute_gradients(
self.d_losses[-1], var_list=list(self.d_vars))
g_grads = g_opt.compute_gradients(
self.g_losses[-1], var_list=list(self.g_vars))
all_d_grads.append(d_grads)
all_g_grads.append(g_grads)
# tf.get_variable_scope().reuse_variables()
avg_d_grads = average_gradients(all_d_grads)
avg_g_grads = average_gradients(all_g_grads)
self.d_opt = d_opt.apply_gradients(avg_d_grads)
self.g_opt = g_opt.apply_gradients(avg_g_grads)
def build_model_single_gpu(self, gpu_idx):
if gpu_idx == 0:
# create the nodes to load for input pipeline
filename_queue = tf.train.string_input_producer([self.e2e_dataset])
self.get_wav, self.get_noisy = read_and_decode(
filename_queue, self.canvas_size, self.preemph)
# load the data to input pipeline
wavbatch, \
noisybatch = tf.train.shuffle_batch([self.get_wav,
self.get_noisy],
batch_size=self.batch_size,
num_threads=2,
capacity=1000 + 3 * self.batch_size,
min_after_dequeue=1000,
name='wav_and_noisy')
if gpu_idx == 0:
self.Gs = []
self.zs = []
self.gtruth_wavs = []
self.gtruth_noisy = []
self.gtruth_wavs.append(wavbatch)
self.gtruth_noisy.append(noisybatch)
# add channels dimension to manipulate in D and G
wavbatch = tf.expand_dims(wavbatch, -1)
noisybatch = tf.expand_dims(noisybatch, -1)
# by default leaky relu is used
do_prelu = False
if self.g_nl == 'prelu':
do_prelu = True
if gpu_idx == 0:
#self.sample_wavs = tf.placeholder(tf.float32, [self.batch_size,
# self.canvas_size],
# name='sample_wavs')
ref_Gs = self.generator(
noisybatch, is_ref=True, spk=None, do_prelu=do_prelu)
print('num of G returned: ', len(ref_Gs))
self.reference_G = ref_Gs[0]
self.ref_z = ref_Gs[1]
if do_prelu:
self.ref_alpha = ref_Gs[2:]
self.alpha_summ = []
for m, ref_alpha in enumerate(self.ref_alpha):
# add a summary per alpha
self.alpha_summ.append(
histogram_summary('alpha_{}'.format(m), ref_alpha))
# make a dummy copy of discriminator to have variables and then
# be able to set up the variable reuse for all other devices
# merge along channels and this would be a real batch
dummy_joint = tf.concat([wavbatch, noisybatch], 2)
dummy = discriminator(self, dummy_joint, reuse=False)
G, z = self.generator(
noisybatch, is_ref=False, spk=None, do_prelu=do_prelu)
self.Gs.append(G)
self.zs.append(z)
# add new dimension to merge with other pairs
D_rl_joint = tf.concat([wavbatch, noisybatch], 2)
D_fk_joint = tf.concat([G, noisybatch], 2)
# build rl discriminator
d_rl_logits = discriminator(self, D_rl_joint, reuse=True)
# build fk G discriminator
d_fk_logits = discriminator(self, D_fk_joint, reuse=True)
# make disc variables summaries
self.d_rl_sum = histogram_summary("d_real", d_rl_logits)
self.d_fk_sum = histogram_summary("d_fake", d_fk_logits)
#self.d_nfk_sum = histogram_summary("d_noisyfake", d_nfk_logits)
self.rl_audio_summ = audio_summary('real_audio', wavbatch)
self.real_w_summ = histogram_summary('real_wav', wavbatch)
self.noisy_audio_summ = audio_summary('noisy_audio', noisybatch)
self.noisy_w_summ = histogram_summary('noisy_wav', noisybatch)
self.gen_audio_summ = audio_summary('G_audio', G)
self.gen_summ = histogram_summary('G_wav', G)
if gpu_idx == 0:
self.g_losses = []
self.g_l1_losses = []
self.g_adv_losses = []
self.d_rl_losses = []
self.d_fk_losses = []
#self.d_nfk_losses = []
self.d_losses = []
d_rl_loss = tf.reduce_mean(tf.squared_difference(d_rl_logits, 1.))
d_fk_loss = tf.reduce_mean(tf.squared_difference(d_fk_logits, 0.))
#d_nfk_loss = tf.reduce_mean(tf.squared_difference(d_nfk_logits, 0.))
g_adv_loss = tf.reduce_mean(tf.squared_difference(d_fk_logits, 1.))
d_loss = d_rl_loss + d_fk_loss
# Add the L1 loss to G
g_l1_loss = self.l1_lambda * tf.reduce_mean(
tf.abs(tf.subtract(G, wavbatch)))
g_loss = g_adv_loss + g_l1_loss
self.g_l1_losses.append(g_l1_loss)
self.g_adv_losses.append(g_adv_loss)
self.g_losses.append(g_loss)
self.d_rl_losses.append(d_rl_loss)
self.d_fk_losses.append(d_fk_loss)
#self.d_nfk_losses.append(d_nfk_loss)
self.d_losses.append(d_loss)
self.d_rl_loss_sum = scalar_summary("d_rl_loss", d_rl_loss)
self.d_fk_loss_sum = scalar_summary("d_fk_loss", d_fk_loss)
#self.d_nfk_loss_sum = scalar_summary("d_nfk_loss",
# d_nfk_loss)
self.g_loss_sum = scalar_summary("g_loss", g_loss)
self.g_loss_l1_sum = scalar_summary("g_l1_loss", g_l1_loss)
self.g_loss_adv_sum = scalar_summary("g_adv_loss", g_adv_loss)
self.d_loss_sum = scalar_summary("d_loss", d_loss)
if gpu_idx == 0:
self.get_vars()
def get_vars(self):
t_vars = tf.trainable_variables()
self.d_vars_dict = {}
self.g_vars_dict = {}
for var in t_vars:
if var.name.startswith('d_'):
self.d_vars_dict[var.name] = var
if var.name.startswith('g_'):
self.g_vars_dict[var.name] = var
self.d_vars = self.d_vars_dict.values()
self.g_vars = self.g_vars_dict.values()
for x in self.d_vars:
assert x not in self.g_vars
for x in self.g_vars:
assert x not in self.d_vars
for x in t_vars:
assert x in self.g_vars or x in self.d_vars, x.name
self.all_vars = t_vars
if self.d_clip_weights:
print('Clipping D weights')
self.d_clip = [
v.assign(tf.clip_by_value(v, -0.05, 0.05)) for v in self.d_vars
]
else:
print('Not clipping D weights')
def vbn(self, tensor, name):
if self.disable_vbn:
class Dummy(object):
# Do nothing here, no bnorm
def __init__(self, tensor, ignored):
self.reference_output = tensor
def __call__(self, x):
return x
VBN_cls = Dummy
else:
VBN_cls = VBN
if not hasattr(self, name):
vbn = VBN_cls(tensor, name)
setattr(self, name, vbn)
return vbn.reference_output
vbn = getattr(self, name)
return vbn(tensor)
def train(self, config, devices):
""" Train the SEGAN """
print('Initializing optimizers...')
# init optimizers
d_opt = self.d_opt
g_opt = self.g_opt
num_devices = len(devices)
try:
init = tf.global_variables_initializer()
except AttributeError:
# fall back to old implementation
init = tf.initialize_all_variables()
print('Initializing variables...')
self.sess.run(init)
g_summs = [
self.d_fk_sum,
#self.d_nfk_sum,
self.d_fk_loss_sum,
#self.d_nfk_loss_sum,
self.g_loss_sum,
self.g_loss_l1_sum,
self.g_loss_adv_sum,
self.gen_summ,
self.gen_audio_summ
]
# if we have prelus, add them to summary
if hasattr(self, 'alpha_summ'):
g_summs += self.alpha_summ
self.g_sum = tf.summary.merge(g_summs)
self.d_sum = tf.summary.merge([
self.d_loss_sum, self.d_rl_sum, self.d_rl_loss_sum,
self.rl_audio_summ, self.real_w_summ, self.disc_noise_std_summ
])
if not os.path.exists(os.path.join(config.save_path, 'train')):
os.makedirs(os.path.join(config.save_path, 'train'))
self.writer = tf.summary.FileWriter(
os.path.join(config.save_path, 'train'), self.sess.graph)
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(coord=coord)
print('Sampling some wavs to store sample references...')
# Hang onto a copy of wavs so we can feed the same one every time
# we store samples to disk for hearing
# pick a single batch
sample_noisy, sample_wav, \
sample_z = self.sess.run([self.gtruth_noisy[0],
self.gtruth_wavs[0],
self.zs[0]])
print('sample noisy shape: ', sample_noisy.shape)
print('sample wav shape: ', sample_wav.shape)
print('sample z shape: ', sample_z.shape)
save_path = config.save_path
counter = 0
# count number of samples
num_examples = 0
for record in tf.python_io.tf_record_iterator(self.e2e_dataset):
num_examples += 1
print('total examples in TFRecords {}: {}'.format(
self.e2e_dataset, num_examples))
# last samples (those not filling a complete batch) are discarded
num_batches = num_examples / self.batch_size
print('Batches per epoch: ', num_batches)
if self.load(self.save_path):
print('[*] Load SUCCESS')
else:
print('[!] Load failed')
batch_idx = 0
curr_epoch = 0
batch_timings = []
d_fk_losses = []
#d_nfk_losses = []
d_rl_losses = []
g_adv_losses = []
g_l1_losses = []
try:
while not coord.should_stop():
start = timeit.default_timer()
if counter % config.save_freq == 0:
for d_iter in range(self.disc_updates):
_d_opt, _d_sum, \
d_fk_loss, \
d_rl_loss = self.sess.run([d_opt, self.d_sum,
self.d_fk_losses[0],
#self.d_nfk_losses[0],
self.d_rl_losses[0]])
if self.d_clip_weights:
self.sess.run(self.d_clip)
#d_nfk_loss, \
# now G iterations
_g_opt, _g_sum, \
g_adv_loss, \
g_l1_loss = self.sess.run([g_opt, self.g_sum,
self.g_adv_losses[0],
self.g_l1_losses[0]])
else:
for d_iter in range(self.disc_updates):
_d_opt, \
d_fk_loss, \
d_rl_loss = self.sess.run([d_opt,
self.d_fk_losses[0],
#self.d_nfk_losses[0],
self.d_rl_losses[0]])
#d_nfk_loss, \
if self.d_clip_weights:
self.sess.run(self.d_clip)
_g_opt, \
g_adv_loss, \
g_l1_loss = self.sess.run([g_opt, self.g_adv_losses[0],
self.g_l1_losses[0]])
end = timeit.default_timer()
batch_timings.append(end - start)
d_fk_losses.append(d_fk_loss)
#d_nfk_losses.append(d_nfk_loss)
d_rl_losses.append(d_rl_loss)
g_adv_losses.append(g_adv_loss)
g_l1_losses.append(g_l1_loss)
print('{}/{} (epoch {}), d_rl_loss = {:.5f}, '
'd_fk_loss = {:.5f}, ' #d_nfk_loss = {:.5f}, '
'g_adv_loss = {:.5f}, g_l1_loss = {:.5f},'
' time/batch = {:.5f}, '
'mtime/batch = {:.5f}'.format(
counter,
config.epoch * num_batches,
curr_epoch,
d_rl_loss,
d_fk_loss,
#d_nfk_loss,
g_adv_loss,
g_l1_loss,
end - start,
np.mean(batch_timings)))
batch_idx += num_devices
counter += num_devices
if (counter / num_devices) % config.save_freq == 0:
self.save(config.save_path, counter)
self.writer.add_summary(_g_sum, counter)
self.writer.add_summary(_d_sum, counter)
fdict = {
self.gtruth_noisy[0]: sample_noisy,
self.zs[0]: sample_z
}
canvas_w = self.sess.run(self.Gs[0], feed_dict=fdict)
swaves = sample_wav
sample_dif = sample_wav - sample_noisy
for m in range(min(20, canvas_w.shape[0])):
print('w{} max: {} min: {}'.format(
m, np.max(canvas_w[m]), np.min(canvas_w[m])))
wavfile.write(
os.path.join(save_path, 'sample_{}-'
'{}.wav'.format(counter, m)), int(16e3),
de_emph(canvas_w[m], self.preemph))
m_gtruth_path = os.path.join(save_path, 'gtruth_{}.'
'wav'.format(m))
if not os.path.exists(m_gtruth_path):
wavfile.write(
os.path.join(save_path, 'gtruth_{}.'
'wav'.format(m)), int(16e3),
de_emph(swaves[m], self.preemph))
wavfile.write(
os.path.join(save_path, 'noisy_{}.'
'wav'.format(m)), int(16e3),
de_emph(sample_noisy[m], self.preemph))
wavfile.write(
os.path.join(save_path,
'dif_{}.wav'.format(m)), int(16e3),
de_emph(sample_dif[m], self.preemph))
np.savetxt(
os.path.join(save_path, 'd_rl_losses.txt'),
d_rl_losses)
np.savetxt(
os.path.join(save_path, 'd_fk_losses.txt'),
d_fk_losses)
np.savetxt(
os.path.join(save_path, 'g_adv_losses.txt'),
g_adv_losses)
np.savetxt(
os.path.join(save_path, 'g_l1_losses.txt'),
g_l1_losses)
if batch_idx >= num_batches:
curr_epoch += 1
# re-set batch idx
batch_idx = 0
# check if we have to deactivate L1
if curr_epoch >= config.l1_remove_epoch and self.deactivated_l1 == False:
print('** Deactivating L1 factor! **')
self.sess.run(tf.assign(self.l1_lambda, 0.))
self.deactivated_l1 = True
# check if we have to start decaying noise (if any)
if curr_epoch >= config.denoise_epoch and self.deactivated_noise == False:
# apply noise std decay rate
decay = config.noise_decay
if not hasattr(self, 'curr_noise_std'):
self.curr_noise_std = self.init_noise_std
new_noise_std = decay * self.curr_noise_std
if new_noise_std < config.denoise_lbound:
print('New noise std {} < lbound {}, setting 0.'.
format(new_noise_std, config.denoise_lbound))
print('** De-activating noise layer **')
# it it's lower than a lower bound, cancel out completely
new_noise_std = 0.
self.deactivated_noise = True
else:
print(
'Applying decay {} to noise std {}: {}'.format(
decay, self.curr_noise_std, new_noise_std))
self.sess.run(
tf.assign(self.disc_noise_std, new_noise_std))
self.curr_noise_std = new_noise_std
if curr_epoch >= config.epoch:
# done training
print('Done training; epoch limit {} '
'reached.'.format(self.epoch))
print('Saving last model at iteration {}'.format(counter))
self.save(config.save_path, counter)
self.writer.add_summary(_g_sum, counter)
self.writer.add_summary(_d_sum, counter)
break
except tf.errors.OutOfRangeError:
print('Done training; epoch limit {} reached.'.format(self.epoch))
finally:
coord.request_stop()
coord.join(threads)
def clean(self, x):
""" clean a utterance x
x: numpy array containing the normalized noisy waveform
"""
c_res = None
for beg_i in range(0, x.shape[0], self.canvas_size):
if x.shape[0] - beg_i < self.canvas_size:
length = x.shape[0] - beg_i
pad = (self.canvas_size) - length
else:
length = self.canvas_size
pad = 0
x_ = np.zeros((self.batch_size, self.canvas_size))
if pad > 0:
x_[0] = np.concatenate((x[beg_i:beg_i + length],
np.zeros(pad)))
else:
x_[0] = x[beg_i:beg_i + length]
print('Cleaning chunk {} -> {}'.format(beg_i, beg_i + length))
fdict = {self.gtruth_noisy[0]: x_}
canvas_w = self.sess.run(self.Gs[0], feed_dict=fdict)[0]
canvas_w = canvas_w.reshape((self.canvas_size))
print('canvas w shape: ', canvas_w.shape)
if pad > 0:
print('Removing padding of {} samples'.format(pad))
# get rid of last padded samples
canvas_w = canvas_w[:-pad]
if c_res is None:
c_res = canvas_w
else:
c_res = np.concatenate((c_res, canvas_w))
# deemphasize
c_res = de_emph(c_res, self.preemph)
return c_res
class SEAE(Model):
""" Speech Enhancement Auto Encoder """
def __init__(self, sess, args, devices, infer=False):
self.args = args
self.sess = sess
self.keep_prob = 1.
if infer:
self.keep_prob_var = tf.Variable(self.keep_prob, trainable=False)
else:
self.keep_prob = 0.5
self.keep_prob_var = tf.Variable(self.keep_prob, trainable=False)
self.batch_size = args.batch_size
self.epoch = args.epoch
self.devices = devices
self.save_path = args.save_path
# canvas size
self.canvas_size = args.canvas_size
self.g_enc_depths = [16, 32, 32, 64, 64, 128, 128, 256, 256, 512, 1024]
self.e2e_dataset = args.e2e_dataset
# define the Generator
self.generator = AEGenerator(self)
self.build_model(args)
def build_model(self, config):
all_g_grads = []
g_opt = tf.train.AdamOptimizer(config.g_learning_rate, config.beta_1)
for idx, device in enumerate(self.devices):
with tf.device("/%s" % device):
with tf.name_scope("device_%s" % idx):
with variables_on_gpu0():
self.build_model_single_gpu(idx)
g_grads = g_opt.compute_gradients(
self.g_losses[-1], var_list=self.g_vars)
all_g_grads.append(g_grads)
tf.get_variable_scope().reuse_variables()
avg_g_grads = average_gradients(all_g_grads)
self.g_opt = g_opt.apply_gradients(avg_g_grads)
def build_model_single_gpu(self, gpu_idx):
if gpu_idx == 0:
# create the nodes to load for input pipeline
filename_queue = tf.train.string_input_producer([self.e2e_dataset])
self.get_wav, self.get_noisy = read_and_decode(
filename_queue, 2**14)
# load the data to input pipeline
wavbatch, \
noisybatch = tf.train.shuffle_batch([self.get_wav,
self.get_noisy],
batch_size=self.batch_size,
num_threads=2,
capacity=1000 + 3 * self.batch_size,
min_after_dequeue=1000,
name='wav_and_noisy')
if gpu_idx == 0:
self.Gs = []
self.zs = []
self.gtruth_wavs = []
self.gtruth_noisy = []
self.gtruth_wavs.append(wavbatch)
self.gtruth_noisy.append(noisybatch)
# add channels dimension to manipulate in D and G
wavbatch = tf.expand_dims(wavbatch, -1)
noisybatch = tf.expand_dims(noisybatch, -1)
if gpu_idx == 0:
#self.sample_wavs = tf.placeholder(tf.float32, [self.batch_size,
# self.canvas_size],
# name='sample_wavs')
self.reference_G = self.generator(
noisybatch, is_ref=True, spk=None, z_on=False)
G = self.generator(noisybatch, is_ref=False, spk=None, z_on=False)
print('GAE shape: ', G.get_shape())
self.Gs.append(G)
self.rl_audio_summ = audio_summary('real_audio', wavbatch)
self.real_w_summ = histogram_summary('real_wav', wavbatch)
self.noisy_audio_summ = audio_summary('noisy_audio', noisybatch)
self.noisy_w_summ = histogram_summary('noisy_wav', noisybatch)
self.gen_audio_summ = audio_summary('G_audio', G)
self.gen_summ = histogram_summary('G_wav', G)
if gpu_idx == 0:
self.g_losses = []
# Add the L1 loss to G
g_loss = tf.reduce_mean(tf.abs(tf.sub(G, wavbatch)))
self.g_losses.append(g_loss)
self.g_loss_sum = scalar_summary("g_loss", g_loss)
if gpu_idx == 0:
self.get_vars()
def get_vars(self):
t_vars = tf.trainable_variables()
self.g_vars = [var for var in t_vars if var.name.startswith('g_')]
for x in t_vars:
assert x in self.g_vars, x.name
self.all_vars = t_vars
def train(self, config, devices):
""" Train the SEAE """
print('Initializing optimizer...')
# init optimizer
g_opt = self.g_opt
num_devices = len(devices)
try:
init = tf.global_variables_initializer()
except AttributeError:
# fall back to old implementation
init = tf.initialize_all_variables()
print('Initializing variables...')
self.sess.run(init)
self.saver = tf.train.Saver()
self.g_sum = tf.summary.merge([
self.g_loss_sum, self.gen_summ, self.rl_audio_summ,
self.real_w_summ, self.gen_audio_summ
])
if not os.path.exists(os.path.join(config.save_path, 'train')):
os.makedirs(os.path.join(config.save_path, 'train'))
self.writer = tf.summary.FileWriter(
os.path.join(config.save_path, 'train'), self.sess.graph)
coord = tf.train.Coordinator()
threads = tf.train.start_queue_runners(coord=coord)
print('Sampling some wavs to store sample references...')
# Hang onto a copy of wavs so we can feed the same one every time
# we store samples to disk for hearing
# pick a single batch
sample_noisy, \
sample_wav = self.sess.run([self.gtruth_noisy[0],
self.gtruth_wavs[0]])
print('sample noisy shape: ', sample_noisy.shape)
print('sample wav shape: ', sample_wav.shape)
save_path = config.save_path
counter = 0
# count number of samples
num_examples = 0
for record in tf.python_io.tf_record_iterator(self.e2e_dataset):
num_examples += 1
print('total examples in TFRecords {}: {}'.format(
self.e2e_dataset, num_examples))
# last samples (those not filling a complete batch) are discarded
num_batches = num_examples / self.batch_size
print('Batches per epoch: ', num_batches)
if self.load(self.save_path):
print('[*] Load SUCCESS')
else:
print('[!] Load failed')
batch_idx = 0
curr_epoch = 0
batch_timings = []
g_losses = []
try:
while not coord.should_stop():
start = timeit.default_timer()
if counter % config.save_freq == 0:
# now G iterations
_g_opt, _g_sum, \
g_loss = self.sess.run([g_opt, self.g_sum,
self.g_losses[0]])
else:
_g_opt, \
g_loss = self.sess.run([g_opt, self.g_losses[0]])
end = timeit.default_timer()
batch_timings.append(end - start)
g_losses.append(g_loss)
print('{}/{} (epoch {}), g_loss = {:.5f},'
' time/batch = {:.5f}, '
'mtime/batch = {:.5f}'.format(
counter, config.epoch * num_batches, curr_epoch,
g_loss, end - start, np.mean(batch_timings)))
batch_idx += num_devices
counter += num_devices
if (counter / num_devices) % config.save_freq == 0:
self.save(config.save_path, counter)
self.writer.add_summary(_g_sum, counter)
fdict = {self.gtruth_noisy[0]: sample_noisy}
canvas_w = self.sess.run(self.Gs[0], feed_dict=fdict)
swaves = sample_wav
sample_dif = sample_wav - sample_noisy
for m in range(min(20, canvas_w.shape[0])):
print('w{} max: {} min: {}'.format(
m, np.max(canvas_w[m]), np.min(canvas_w[m])))
wavfile.write(
os.path.join(save_path, 'sample_{}-{}.wav'.format(
counter, m)), 16e3, canvas_w[m])
if not os.path.exists(
os.path.join(save_path,
'gtruth_{}.wav'.format(m))):
wavfile.write(
os.path.join(save_path,
'gtruth_{}.wav'.format(m)), 16e3,
swaves[m])
wavfile.write(
os.path.join(save_path,
'noisy_{}.wav'.format(m)), 16e3,
sample_noisy[m])
wavfile.write(
os.path.join(save_path,
'dif_{}.wav'.format(m)), 16e3,
sample_dif[m])
np.savetxt(
os.path.join(save_path, 'g_losses.txt'), g_losses)
if batch_idx >= num_batches:
curr_epoch += 1
# re-set batch idx
batch_idx = 0
if curr_epoch >= config.epoch:
# done training
print('Done training; epoch limit {} '
'reached.'.format(self.epoch))
print('Saving last model at iteration {}'.format(counter))
self.save(config.save_path, counter)
self.writer.add_summary(_g_sum, counter)
break
except tf.errors.OutOfRangeError:
print('[!] Reached queues limits in training loop')
finally:
coord.request_stop()
coord.join(threads)