Create config.json
Browse files- config.json +17 -0
config.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
// config.json
|
| 2 |
+
{
|
| 3 |
+
"_name_or_path": "lstm-autoencoder-financial",
|
| 4 |
+
"architectures": [
|
| 5 |
+
"LSTMAutoencoder"
|
| 6 |
+
],
|
| 7 |
+
"input_features": 4,
|
| 8 |
+
"sequence_length": 30,
|
| 9 |
+
"encoder_hidden_size": 64,
|
| 10 |
+
"decoder_hidden_size": 64,
|
| 11 |
+
"num_layers": 2,
|
| 12 |
+
"latent_dimension": 32,
|
| 13 |
+
"model_type": "autoencoder",
|
| 14 |
+
"anomaly_threshold": 0.05,
|
| 15 |
+
"features": ["BTC_Close", "ETH_Close", "NDX_Close", "VIX_Close"],
|
| 16 |
+
"loss_function": "MSELoss"
|
| 17 |
+
}
|