-
Notifications
You must be signed in to change notification settings - Fork 33
/
1.config.yaml
49 lines (42 loc) · 911 Bytes
/
1.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
# config for training
trainer:
checkpoint: "./tune/2spk_dcnet_d"
optimizer: "rmsprop"
lr: 1e-5
momentum: 0.9
weight_decay: 0
clip_norm: 200
num_spks: 2
dcnet:
rnn: "lstm"
embedding_dim: 20
num_layers: 2
hidden_size: 600
dropout: 0.5
non_linear: "tanh"
bidirectional: true
spectrogram_reader:
frame_shift: 64
frame_length: 256
window: "hann"
transpose: true
apply_log: true
apply_abs: true
train_scp_conf:
mixture: "./data/2spk/train/mix.scp"
spk1: "./data/2spk/train/spk1.scp"
spk2: "./data/2spk/train/spk2.scp"
valid_scp_conf:
mixture: "./data/2spk/dev/mix.scp"
spk1: "./data/2spk/dev/spk1.scp"
spk2: "./data/2spk/dev/spk2.scp"
debug_scp_conf:
mixture: "./data/tune/mix.scp"
spk1: "./data/tune/spk1.scp"
spk2: "./data/tune/spk2.scp"
dataloader:
shuffle: true
batch_size: 1
drop_last: false
vad_threshold: 40
mvn_dict: "data/cmvn.dict"