Skip to content

Instantly share code, notes, and snippets.

@alex-hse-repository
Last active June 1, 2022 06:08
Show Gist options
  • Save alex-hse-repository/0a9bc9bb37b62e78b867d814aa399774 to your computer and use it in GitHub Desktop.
Save alex-hse-repository/0a9bc9bb37b62e78b867d814aa399774 to your computer and use it in GitHub Desktop.
pipeline = Pipeline(
model=ProphetModel(yearly_seasonality=True),
transforms=[],
horizon=HORIZON
)
metrics, forecast, _ = pipeline.backtest(ts, metrics=[SMAPE()], n_folds=1)
plot_backtest(forecast, ts)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment