-
-
Save dpbac/057c0350f4512b2c3f564a0d9a6bb9a8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| m = Prophet(interval_width=0.95, weekly_seasonality=True, | |
| changepoint_prior_scale=best_params['changepoint_prior_scale'], | |
| seasonality_prior_scale=best_params['seasonality_prior_scale']) | |
| m.add_country_holidays(country_name='US') | |
| model = m.fit(df_store_2_item_28) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment