-
Notifications
You must be signed in to change notification settings - Fork 6
/
default_configs.json
38 lines (38 loc) · 981 Bytes
/
default_configs.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
{
"database_path": "/home/luisao/perso/rat_crypto_trader/datasets",
"train_range": {
"start": "2018-01-01",
"end": "2021-02-01"
},
"val_range": {
"start": "2020-02-01",
"end": "2021-03-25"
},
"test_range": {
"start": "2021-03-25",
"end": "2021-04-1"
},
"quote_asset": "BTC",
"selected_symbols": ["ETHBTC", "LTCBTC", "BTCUSDT"],
"selected_features": ["close", "high", "low", "open"],
"freq": "30T",
"total_step": 50000,
"output_step": 1000,
"x_window_size": 31,
"batch_size": 128,
"trading_consumption": 0.0025,
"variance_penalty": 0.0,
"cost_penalty": 0.0,
"learning_rate": 0.0001,
"model_dir": "/home/luisao/perso/rat_crypto_trader/runs",
"model_name": "first",
"model_index": 1,
"model_dim": 12,
"multihead_num": 2,
"local_context_length": 5,
"weight_decay": 5e-8,
"daily_interest_rate": 0.001,
"buffer_bias_ratio": 5e-5,
"log_dir": "/home/luisao/perso/rat_crypto_trader/logs",
"device": "cpu"
}