-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json
More file actions
61 lines (61 loc) · 1004 Bytes
/
config.json
File metadata and controls
61 lines (61 loc) · 1004 Bytes
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
{
"data": {
"filename": "merged.csv",
"test_filename": "merged_test.csv",
"columns": [
"target",
"Buy",
"spread",
"price",
"size",
"arrival_rate",
"Trade",
"imbalance",
"mid"
],
"sequence_length": 35,
"train_test_split":0.8,
"normalise": false
},
"training": {
"epochs": 40,
"batch_size": 256
},
"model": {
"loss": "categorical_crossentropy",
"optimizer": "adam",
"save_dir": "saved_models",
"layers": [
{
"type": "lstm",
"neurons": 30,
"input_timesteps": 35,
"input_dim": 8,
"return_seq": true
},
{
"type": "dropout",
"rate": 0.2
},
{
"type": "lstm",
"neurons": 40,
"return_seq": true
},
{
"type": "lstm",
"neurons": 40,
"return_seq": false
},
{
"type": "dropout",
"rate": 0.2
},
{
"type": "dense",
"neurons": 3,
"activation": "softmax"
}
]
}
}