Shoriful025 commited on
Commit
aa3237e
·
verified ·
1 Parent(s): 2bbfee8

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +21 -0
config.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "TimeSeriesTransformerForPrediction"
4
+ ],
5
+ "model_type": "time_series_transformer",
6
+ "context_length": 168,
7
+ "prediction_length": 24,
8
+ "d_model": 64,
9
+ "num_encoder_layers": 3,
10
+ "num_decoder_layers": 3,
11
+ "nhead": 4,
12
+ "dim_feedforward": 256,
13
+ "dropout": 0.1,
14
+ "activation": "gelu",
15
+ "input_size": 12,
16
+ "lags_sequence": [1, 2, 3, 4, 5, 6, 7],
17
+ "scaling": "mean",
18
+ "distribution_output": "student_t",
19
+ "torch_dtype": "float32",
20
+ "transformers_version": "4.37.0"
21
+ }