-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathconfig_singing_voice.json
56 lines (56 loc) · 1.26 KB
/
config_singing_voice.json
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
{
"dataset": {
"in_memory_percentage": 1,
"extract_voice_percentage": 0.5,
"path": "data/MUSDB",
"sample_rate": 16000,
"type": "musdb18"
},
"model": {
"condition_encoding": "binary",
"dilations": 9,
"filters": {
"lengths": {
"res": 3,
"final": [3, 3],
"skip": 1
},
"depths": {
"res": 64,
"skip": 64,
"final": [2048, 256]
}
},
"num_stacks": 4,
"target_field_length": 1601,
"target_padding": 1
},
"optimizer": {
"decay": 0.0,
"epsilon": 1e-08,
"lr": 0.001,
"momentum": 0.9,
"type": "adam"
},
"training": {
"batch_size": 10,
"early_stopping_patience": 16,
"loss": {
"out_1": {
"l1": 1,
"l2": 0,
"weight": 1
},
"out_2": {
"l1": 1,
"l2": 0,
"weight": -0.05
}
},
"num_epochs": 250,
"num_steps_test": 500,
"num_steps_train": 2000,
"path": "sessions/002",
"verbosity": 1
}
}