[Question] Multivariate Gaussian Process Time-Series Forecasting #1935
Replies: 2 comments 3 replies
-
You should just be able to adapt the gpytorch tutorial: https://docs.gpytorch.ai/en/stable/examples/01_Exact_GPs/Simple_GP_Regression.html for multiple input dimensions. Then at test time, I'd imagine that you would simply update the time inputs for forecasting. |
Beta Was this translation helpful? Give feedback.
-
After running several experiments regarding multiple input dimensions, I would like to consult regarding a technical issue. In order to receive corresponding label (or trajectory) for the remaining 0.4*L, it is expected for me to provide unobserved/unseen features from the future in an offline manner. As far as I know, multidimensional GP expects data with N=5 features unlike the univariate case. |
Beta Was this translation helpful? Give feedback.
-
Hello everyone,
I am trying to find a GPyTorch implementation example for multivariate time-series forecasting problem.
As implemented in the link below:
https://scikit-learn.org/stable/auto_examples/gaussian_process/plot_gpr_co2.html
forecasting approach can be seen in scikit-learn.
In order to have a similar result what should one do? Currently, I am employing ExactGP Regression.
Let's imagine we have (N+M, 5) data with N+M entry and 5 features with corresponding (N+M, 1) labels.
For instance, I am planning to feed (N, 5)[observed time-series] with its labels (N, 1); then I need to forecast (M, 1)[unobserved time-series] labels. I could not come up with a strategy to forecast future labels within the ExactGP/GPyTorch setting.
Any help/support will be much appreciated!
Beta Was this translation helpful? Give feedback.
All reactions