Spaces:
Runtime error
Runtime error
Commit
·
349d8fe
1
Parent(s):
480e9a8
Update app.py
Browse files
app.py
CHANGED
@@ -16,9 +16,9 @@ df.dropna(inplace=True)
|
|
16 |
m = NeuralProphet(n_forecasts=3,
|
17 |
n_lags=12,
|
18 |
changepoints_range=9, num_hidden_layers=6, daily_seasonality= False, weekly_seasonality = False, yearly_seasonality = True, ar_reg=True,
|
19 |
-
n_changepoints=
|
20 |
seasonality_mode="multiplicative", drop_missing=True,
|
21 |
-
learning_rate=0.
|
22 |
)
|
23 |
|
24 |
m.fit(df, freq='M')
|
|
|
16 |
m = NeuralProphet(n_forecasts=3,
|
17 |
n_lags=12,
|
18 |
changepoints_range=9, num_hidden_layers=6, daily_seasonality= False, weekly_seasonality = False, yearly_seasonality = True, ar_reg=True,
|
19 |
+
n_changepoints=350, 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 |
|
24 |
m.fit(df, freq='M')
|