-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathparams_human.json
57 lines (55 loc) · 1.34 KB
/
params_human.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
{
"train": {
"batch_size": 4,
"optimizer": "sgd",
"learning_rate": 0.15,
"momentum": 0.99,
"patience": 16,
"clip_norm": 2
},
"model": {
"seq_length": 131072,
"target_length": 1024,
"activation": "gelu",
"norm_type": "batch",
"bn_momentum": 0.9,
"trunk": [
{
"name": "conv_block",
"filters": 288,
"kernel_size": 15,
"pool_size": 2
},
{
"name": "conv_tower",
"filters_init": 339,
"filters_mult": 1.1776,
"kernel_size": 5,
"pool_size": 2,
"repeat": 6
},
{
"name": "dilated_residual",
"filters": 384,
"rate_mult": 1.5,
"repeat": 11,
"dropout": 0.3,
"round": true
},
{
"name": "Cropping1D",
"cropping": 64
},
{
"name": "conv_block",
"filters": 1536,
"dropout": 0.05
}
],
"head_human": {
"name": "final",
"units": 5313,
"activation": "softplus"
}
}
}