-
Notifications
You must be signed in to change notification settings - Fork 75
/
config.json
executable file
·57 lines (57 loc) · 1.24 KB
/
config.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
57
{
"trainer": {
"downsampling_ratio": 1,
"chunk_size": 20,
"context_size_left": 10,
"context_size_right": 10,
"jitter_range": 2,
"mel_dim": 80,
"simu": true,
"simu_loss_weight": 100,
"compact": true
},
"joiner": {
"type": "JointNet",
"kwargs": {
"odim_enc": 512,
"odim_pred": 256,
"num_classes": 8,
"compact": true
}
},
"decoder": {
"type": "LSTM",
"kwargs": {
"hdim": 256,
"num_classes": 8,
"with_head": false
}
},
"encoder": {
"type": "LSTM",
"kwargs": {
"bidirectional": true,
"hdim": 256,
"idim": 80,
"dropout": 0.0,
"num_layers": 2,
"num_classes": 8,
"with_head": false
}
},
"scheduler": {
"type": "SchedulerCosineAnnealing",
"kwargs": {
"min_lr": 1e-06,
"period": 500,
"stop_step": 500
},
"optimizer": {
"zeroredundancy": true,
"type": "Adam",
"kwargs": {
"lr": 0.001
}
}
}
}