-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigs.json
More file actions
24 lines (24 loc) · 628 Bytes
/
Copy pathconfigs.json
File metadata and controls
24 lines (24 loc) · 628 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
{
"data": {
"filename": "data/bitcoin.csv",
"filename_clean": "data/clean_data.h5",
"filter_columns": [
"Open",
"Close",
"Volume_(BTC)",
"Volume_(Currency)"
],
"batch_size": 100,
"train_test_split": 0.8,
"x_window_size": 150,
"y_window_size": 1,
"y_predict_column": "Close"
},
"model": {
"epochs": 2,
"loss_function": "mse",
"optimiser_function": "Nadam",
"filename_model": "data/model_saved.h5",
"filename_predictions": "data/model_predictions.h5"
}
}