-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[ready to review] ODSC-68841: API Returns Data Directly #1048
Conversation
|
|
|
|
|
|
|
|
|
|
model = Prophet(**params) | ||
if monthly_seasonality: | ||
model.add_seasonality(name="monthly", period=30.5, fourier_order=5) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to specify this, wouldn;t this be auto-tuned/optimized internally.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Prophet doesn't natively support it, they recommend adding it as a custom seasonality. Unfortunately thats hard to do with our yaml file
If you go to "Specifying Custom Seasonalities" section here: https://facebook.github.io/prophet/docs/seasonality,_holiday_effects,_and_regressors.html
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.