-
Notifications
You must be signed in to change notification settings - Fork 6
/
remote_configs.json
38 lines (38 loc) · 987 Bytes
/
remote_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": "2020-01-01",
"end": "2021-03-10"
},
"val_range": {
"start": "2021-03-10",
"end": "2021-03-15"
},
"test_range": {
"start": "2021-03-15",
"end": "2021-04-01"
},
"quote_asset": "USDT",
"selected_symbols": ["BTCUSDT", "LTCUSDT", "ETHUSDT"],
"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.001,
"model_dir": "/home/luisao/perso/rat_crypto_trader/runs",
"model_name": "first",
"model_index": 1,
"model_dim": 20,
"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": "cuda:0"
}