Spaces:
Sleeping
Sleeping
TuanScientist
commited on
Commit
•
1244f78
1
Parent(s):
54c351c
Update app.py
Browse files
app.py
CHANGED
@@ -15,9 +15,9 @@ df.dropna(inplace=True)
|
|
15 |
|
16 |
m = NeuralProphet(n_forecasts= 3,
|
17 |
n_lags=12,
|
18 |
-
changepoints_range=
|
19 |
n_changepoints=150, trend_reg_threshold=True, d_hidden=9, global_normalization=True, global_time_normalization=True, seasonality_reg=1, unknown_data_normalization=True,
|
20 |
-
seasonality_mode="multiplicative", drop_missing=True,
|
21 |
learning_rate=0.1
|
22 |
)
|
23 |
|
|
|
15 |
|
16 |
m = NeuralProphet(n_forecasts= 3,
|
17 |
n_lags=12,
|
18 |
+
changepoints_range=1, num_hidden_layers=6, daily_seasonality= False, weekly_seasonality = False, yearly_seasonality = True, ar_reg=True,
|
19 |
n_changepoints=150, trend_reg_threshold=True, d_hidden=9, global_normalization=True, global_time_normalization=True, seasonality_reg=1, unknown_data_normalization=True,
|
20 |
+
seasonality_mode="multiplicative", drop_missing=True,
|
21 |
learning_rate=0.1
|
22 |
)
|
23 |
|