Create config.json
Browse files- config.json +29 -0
config.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
```json
|
| 2 |
+
{
|
| 3 |
+
"_name_or_path": "Custom-LSTM-Architecture",
|
| 4 |
+
"architectures": [
|
| 5 |
+
"CustomLSTMForTimeSeriesPrediction"
|
| 6 |
+
],
|
| 7 |
+
"input_size": 10,
|
| 8 |
+
"hidden_size": 128,
|
| 9 |
+
"num_layers": 3,
|
| 10 |
+
"dropout": 0.3,
|
| 11 |
+
"output_size": 1,
|
| 12 |
+
"sequence_length": 60,
|
| 13 |
+
"activation_function": "tanh",
|
| 14 |
+
"model_type": "lstm_predictor",
|
| 15 |
+
"data_features": [
|
| 16 |
+
"Price_USD",
|
| 17 |
+
"Volume",
|
| 18 |
+
"Market_Cap",
|
| 19 |
+
"Moving_Avg_20",
|
| 20 |
+
"RSI_14",
|
| 21 |
+
"MACD",
|
| 22 |
+
"Ethereum_Correlation",
|
| 23 |
+
"Bitcoin_Volatility",
|
| 24 |
+
"Google_Trend_Score",
|
| 25 |
+
"Social_Media_Sentiment"
|
| 26 |
+
],
|
| 27 |
+
"prediction_target": "Next_Day_Closing_Price_Normalized",
|
| 28 |
+
"transformers_version": "N/A"
|
| 29 |
+
}
|