-
Notifications
You must be signed in to change notification settings - Fork 20
/
config.yaml
48 lines (48 loc) · 820 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
Model:
SpeakerEncoder:
c_in: 80
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.0
ContentEncoder:
c_in: 80
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.0
Decoder:
c_in: 128
c_cond: 128
c_h: 128
c_out: 80
kernel_size: 5
n_conv_blocks: 6
upsample: [2, 1, 2, 1, 2, 1]
act: "relu"
sn: False
dropout_rate: 0.0
Optimizer:
lr: 0.0005
beta1: 0.9
beta2: 0.999
amsgrad: True
weight_decay: 0.0001
grad_norm: 5
Lambda:
rec: 10
kl: 1
kl_annealing: 20000