Navya-Sree commited on
Commit
559c862
·
verified ·
1 Parent(s): e706da8

Create config/config.yaml

Browse files
Files changed (1) hide show
  1. config/config.yaml +31 -0
config/config.yaml ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Data processing configuration
2
+ data_processing:
3
+ data_frequency: 'D'
4
+ lags: [1, 7, 30]
5
+ rolling_windows: [7, 30]
6
+ differences: [1, 7]
7
+ use_tsfresh: false
8
+ scaling_method: 'standard'
9
+ n_jobs: 1
10
+
11
+ # Modeling configuration
12
+ modeling:
13
+ forecast_horizon: 7
14
+ seq_length: 30
15
+
16
+ # LSTM configuration
17
+ lstm:
18
+ hidden_size: 32
19
+ num_layers: 1
20
+ dropout: 0.2
21
+ learning_rate: 0.001
22
+ batch_size: 16
23
+ epochs: 50
24
+
25
+ # Prophet configuration
26
+ prophet:
27
+ changepoint_prior_scale: 0.05
28
+ seasonality_prior_scale: 10.0
29
+ yearly_seasonality: true
30
+ weekly_seasonality: true
31
+ daily_seasonality: false