Create config.json
Browse files- config.json +23 -0
config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"InformerForPrediction"
|
| 4 |
+
],
|
| 5 |
+
"attention_type": "prob",
|
| 6 |
+
"context_length": 168,
|
| 7 |
+
"d_ff": 2048,
|
| 8 |
+
"d_model": 512,
|
| 9 |
+
"distil": true,
|
| 10 |
+
"dropout": 0.05,
|
| 11 |
+
"encoder_layers": 2,
|
| 12 |
+
"decoder_layers": 1,
|
| 13 |
+
"factor": 5,
|
| 14 |
+
"input_size": 1,
|
| 15 |
+
"lags_sequence": [1, 2, 3, 4, 5, 6, 7],
|
| 16 |
+
"model_type": "informer",
|
| 17 |
+
"n_heads": 8,
|
| 18 |
+
"num_parallel_samples": 100,
|
| 19 |
+
"prediction_length": 24,
|
| 20 |
+
"scaling": "std",
|
| 21 |
+
"torch_dtype": "float32",
|
| 22 |
+
"transformers_version": "4.36.0"
|
| 23 |
+
}
|