Replies: 1 comment 1 reply
-
In general this should be possible. Taking a step back though, are the locations of the outputs in your case shared across all of the tasks? And if so, are your observations noisy or noiseless? If locations are shared and observations are noiseless, there is no benefit from using a multi-task model as it reduces to a set of independent models (due to something called autokrigability). |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have read the tutorials on Multitask GP Regression and Batch GP Regression. I would like to know if it is possible to parallelize multiple Multitask GP Regression tasks in a batch form. For example, I have a dataset
(X, y)
with the shape :torch.Size([4, 500, 3]), torch.Size([4, 500, 6])
. Here, 4 represents the batch size, 3 represents the input dimension, and 6 represents the output dimension.Beta Was this translation helpful? Give feedback.
All reactions