-
Notifications
You must be signed in to change notification settings - Fork 150
/
wavenet.json
45 lines (45 loc) · 1.25 KB
/
wavenet.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
{
"_notes": [
"Dev note: Ensure that tests/test_bin/test_train/test_main.py's data is ",
"representative of this!"
],
"net": {
"name": "WaveNet",
"config": {
"layers_configs": [
{
"condition_size": 1,
"input_size": 1,
"channels": 16,
"head_size": 8,
"kernel_size": 3,
"dilations": [1,2,4,8,16,32,64,128,256,512],
"activation": "Tanh",
"gated": false,
"head_bias": false
},
{
"condition_size": 1,
"input_size": 16,
"channels": 8,
"head_size": 1,
"kernel_size": 3,
"dilations": [1,2,4,8,16,32,64,128,256,512],
"activation": "Tanh",
"gated": false,
"head_bias": true
}
],
"head_scale": 0.02
}
},
"optimizer": {
"lr": 0.004
},
"lr_scheduler": {
"class": "ExponentialLR",
"kwargs": {
"gamma": 0.993
}
}
}