Skip to content

Instantly share code, notes, and snippets.

@brianray
Created June 11, 2020 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brianray/adfcc474d10a18232d5e93a9564ac876 to your computer and use it in GitHub Desktop.
Save brianray/adfcc474d10a18232d5e93a9564ac876 to your computer and use it in GitHub Desktop.
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