Created
June 11, 2020 00:10
-
-
Save brianray/adfcc474d10a18232d5e93a9564ac876 to your computer and use it in GitHub Desktop.
This file contains 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
prophet_model = Prophet( | |
growth='linear', | |
changepoints=None, | |
n_changepoints=25, | |
changepoint_range=0.8, | |
yearly_seasonality=10, # Fourier | |
weekly_seasonality=3, # Fourier | |
daily_seasonality='auto', | |
seasonality_mode='additive', | |
seasonality_prior_scale=10.0, | |
holidays_prior_scale=10.0, | |
changepoint_prior_scale=0.05, | |
mcmc_samples=0, | |
interval_width=0.8, | |
uncertainty_samples=1000, | |
stan_backend=None) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment