-
Notifications
You must be signed in to change notification settings - Fork 263
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
created a new udf for multivariate #1058
Conversation
time series forecasting
Hi Ish, what is the difference between the forecasting in this PR and existing forecasting in EvaDB? |
Hi Andy, this is for multivariate forecasting. The previous PR works for univariate forecasting only. |
Thanks Ish! Does multivariate subsume univariate? If so, we can direclty change the existing function instead of creating a new one. |
Hi Andy, Prophet works for univariate also. I think we can update to having a single function. Will this syntax work? @americast can you also share your thoughts on this |
Hi @IshSiva, thanks for the PR. I think for multivariate forecasting, the user would have to also provide multiple columns that need to be considered for forecasting. Thus, the user would have to provide the target column, as well as columns that would be considered as additional regressors. You can check out statsforecast's implementation at this link. If you would like to directly use |
Hi @americast , I have used this statsforecast implementation of Prophet for the multivariate forecasting. The target column can be given as an additional argument in the create udf function. So can we just update this new function to support univariate also? (because it is just an extension). |
@IshSiva I think we can give statsforecast's |
Let's go with just |
time series forecasting