Create config.json
Browse files- config.json +23 -0
config.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"InformerForPrediction"
|
| 4 |
+
],
|
| 5 |
+
"d_model": 512,
|
| 6 |
+
"n_heads": 8,
|
| 7 |
+
"e_layers": 3,
|
| 8 |
+
"d_layers": 2,
|
| 9 |
+
"d_ff": 2048,
|
| 10 |
+
"factor": 5,
|
| 11 |
+
"dropout": 0.05,
|
| 12 |
+
"attn": "prob",
|
| 13 |
+
"embed": "fixed",
|
| 14 |
+
"activation": "gelu",
|
| 15 |
+
"output_attention": false,
|
| 16 |
+
"distil": true,
|
| 17 |
+
"model_type": "informer",
|
| 18 |
+
"prediction_length": 96,
|
| 19 |
+
"context_length": 720,
|
| 20 |
+
"lradj": "type1",
|
| 21 |
+
"torch_dtype": "float16",
|
| 22 |
+
"transformers_version": "4.36.0"
|
| 23 |
+
}
|