-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel_params.json
45 lines (41 loc) · 1.48 KB
/
model_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
{
"model": {
"cnn":{
"model_name": "cnn",
"out_channels": [16, 32, 32],
"pool_size": [2, 1],
"strides": [2, 1],
"filter_sizes": [[9, 1], [9, 1], [9, 1]],
"fc": [500, 200],
"drop_rates": [0.5, 0.5, 0.5],
"fc_drop_rates": [0.5, 0.5]
},ß
"cnn_resi_ecg":{
"model_name": "cnn_resi_ecg",
"out_channel": 16,
"num_layers_in_res": 2,
"num_res_blocks": 15,
"pool_size": [2, 1],
"stride": [2, 1],
"filter_size": [32, 1],
"fc": [128],
"drop_rate": 0.2,
"fc_drop_rates": [0.5]
},
"cnn_resi_cam_ecg":{
"model_name": "cnn_resi_cam_ecg",
"out_channel": 16,
"num_layers_in_res": 2,
"num_res_blocks": 15,
"pool_size": [2, 1],
"stride": [2, 1],
"filter_size": [32, 1],
"drop_rate": 0.2
},
"fnn":{
"model_name": "fnn",
"layer_dims": [1024, 256, 128],
"droprate": 0.5
}
}
}