-
Notifications
You must be signed in to change notification settings - Fork 2
/
current_model_set.json
42 lines (42 loc) · 1.11 KB
/
current_model_set.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
{
"DAGMM": {
"toTrain": true,
"toPredict": true,
"data_path": "data/June30_mars_4min_an",
"weight_path": "weights/DAGMM",
"predictions_path": "predictions/DAGMM",
"train_begin": 0,
"train_end": 10455,
"test_begin": 0,
"test_end": 10470,
"forecast_length": 15,
"skip_length": 0,
"training_params": {
"lambda_energy": 0.2,
"lr": 0.001,
"batch_size": 50,
"gmm_k": 3,
"num_epochs": 5,
"sequence_length": 20
}
},
"LSTM_DAGMM": {
"toTrain": false,
"toPredict": false,
"data_path": "data/June30_mars_4min_an",
"weight_path": "weights/LSTM_DAGMM",
"predictions_path": "predictions/LSTM_DAGMM",
"train_begin": 0,
"train_end": 10800,
"test_begin": 0,
"test_end": null,
"training_params": {
"lambda_energy": 0.2,
"lr": 0.001,
"batch_size": 50,
"gmm_k": 3,
"num_epochs": 1,
"sequence_length": 20
}
}
}