-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfiguration.json
executable file
·76 lines (76 loc) · 1.35 KB
/
configuration.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"gpus" : 1 ,
"mode":"development",
"preprocessing":
{
"basic_time": 1e-3,
"use_scaling":false,
"feature_range" : [-1,1],
"use_whitening" : false,
"rnn":
{
"feature_names" : ["I", "Q"],
"series_offset" : 16
},
"ae":
{
"rbw_set" : [125e3],
"use_scaling":true,
"rbw" : 63e3,
"feature_names":["P"],
"use_noise":false,
"window": "hamming"
},
"cepstrum":
{
"window_size": 512,
"rbw": 125e3
},
"gmm":
{
"rbw": 125e3,
"basic_time": 3e-2
}
},
"learning":
{
"rnn": {
"models_dir": "model/rnn",
"num_epochs": 1,
"batch_size": 512,
"lr": 0.001,
"validation_split": 0.1,
"num_clusters": 16,
"cov_types": [
"diag",
"spherical"
],
"seq_input_length": 16,
"seq_output_length": 8,
"input_padding": "post",
"output_padding": "pre"
},
"ae":
{
"models_dir": "model/ae",
"num_epochs":20 ,
"batch_size":32,
"lr":0.001,
"validation_split":0.2,
"block_length":128,
"block_shape":[50, 100]
}
},
"detection":
{
"rnn":
{
"scores_sample_size":256,
"sigma":20.0
},
"ae":
{
"sigma":3
}
}
}