-
Notifications
You must be signed in to change notification settings - Fork 89
/
config.yaml
52 lines (52 loc) · 926 Bytes
/
config.yaml
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
SpeakerEncoder:
c_in: 512
c_h: 128
c_out: 128
kernel_size: 5
bank_size: 8
bank_scale: 1
c_bank: 128
n_conv_blocks: 6
n_dense_blocks: 6
subsample: [1, 2, 1, 2, 1, 2]
act: 'relu'
dropout_rate: 0
ContentEncoder:
c_in: 512
c_h: 128
c_out: 128
kernel_size: 5
bank_size: 8
bank_scale: 1
c_bank: 128
n_conv_blocks: 6
subsample: [1, 2, 1, 2, 1, 2]
act: 'relu'
dropout_rate: 0
Decoder:
c_in: 128
c_cond: 128
c_h: 128
c_out: 512
kernel_size: 5
n_conv_blocks: 6
upsample: [2, 1, 2, 1, 2, 1]
act: 'relu'
sn: False
dropout_rate: 0
data_loader:
segment_size: 128
frame_size: 1
batch_size: 128
shuffle: True
optimizer:
lr: 0.0005
beta1: 0.9
beta2: 0.999
amsgrad: True
weight_decay: 0.0001
grad_norm: 5
lambda:
lambda_rec: 10
lambda_kl: 1
annealing_iters: 20000