Create config.json
Browse files- config.json +27 -0
config.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"LSTMForRegression"
|
| 4 |
+
],
|
| 5 |
+
"hidden_size": 256,
|
| 6 |
+
"num_layers": 3,
|
| 7 |
+
"input_size": 12,
|
| 8 |
+
"dropout": 0.2,
|
| 9 |
+
"model_type": "lstm_forecaster",
|
| 10 |
+
"window_size": 60,
|
| 11 |
+
"prediction_horizon": 1,
|
| 12 |
+
"feature_map": {
|
| 13 |
+
"open": 0,
|
| 14 |
+
"high": 1,
|
| 15 |
+
"low": 2,
|
| 16 |
+
"close": 3,
|
| 17 |
+
"volume": 4,
|
| 18 |
+
"rsi": 5,
|
| 19 |
+
"macd": 6,
|
| 20 |
+
"bollinger_upper": 7,
|
| 21 |
+
"bollinger_lower": 8,
|
| 22 |
+
"funding_rate": 9,
|
| 23 |
+
"social_sentiment": 10,
|
| 24 |
+
"liquidations": 11
|
| 25 |
+
},
|
| 26 |
+
"torch_dtype": "float32"
|
| 27 |
+
}
|