-
Notifications
You must be signed in to change notification settings - Fork 1
/
cs273b_params.json
57 lines (55 loc) · 1.23 KB
/
cs273b_params.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": 256,
"optimizer": "sgd",
"learning_rate": 0.005,
"momentum": 0.99,
"patience": 16,
"clipnorm": 8
},
"model": {
"seq_length": 1000,
"target_length": 1,
"activation": "gelu",
"batch_norm": true,
"bn_momentum": 0.9,
"trunk": [
{
"name": "conv_block",
"filters": 128,
"kernel_size": 17,
"pool_size": 5
},
{
"name": "conv_block",
"filters": 144,
"kernel_size": 9,
"pool_size": 5
},
{
"name": "conv_tower",
"filters_init": 162,
"filters_mult": 1.125,
"kernel_size": 5,
"pool_size": 2,
"repeat": 3
}
],
"head": [
{
"name": "conv_block",
"filters": 32,
"kernel_size": 5
},
{
"name": "Cropping1D",
"cropping": 2
},
{
"name": "dense",
"units": 4,
"activation": "softplus"
}
]
}
}