-
Notifications
You must be signed in to change notification settings - Fork 376
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
PatchTST does not yet support historical exogenous variables #847
Comments
The same goes for futr_exogenous_list. According to the documentation here, it appears that PatchTST supports futr_exogenous_list. However, when I attempt to run the model with futr_exogenous_list, I encounter the following error: Exception: PatchTST does not yet support future exogenous variables |
I'm having the same problem, obviously the parameter is there but unfortunately it's telling me it's not supported. “PatchTST does not yet support historical exogenous variables” |
PatchTST (the architecture) does not support additional exogenous inputs afaik, that's why the exception is raised. Usually if it is not supported by the original architecture we will not include it, as it may require us to substantially deviate from the original work (adding exogenous to an architecture is quite tricky). There are many other options that may provide equal or better forecasting performance at lower computational cost if you need to use exogenous variables, e.g. NHITS, TSMixerx, BiTCN. Hope this helps. |
Hello, sir. It seems that patchtst is inherently multivariate. Additionally, patchtst appears to perform well with short time series, as indicated by tslib. |
This doesn't relate to the issue at hand: multivariate/univariate has nothing to do with a model being able to handle exogenous covariates. |
What happened + What you expected to happen
PatchTST does not support covariate-assisted prediction, which I find unfortunate to be a significant reduction in prediction performance
Versions / Dependencies
neuralforecast 1.6.4
Reproduction script
--> 953 raise Exception(
954 "PatchTST does not yet support historical exogenous variables"
955 )
Issue Severity
None
The text was updated successfully, but these errors were encountered: