-
Hi, I implemented independent multioutput Gaussian processes and multitask Gaussian processes. Now, I want to use active dimension argument (i.e., active_dims) so that different kernels use different part of training and test data. The structure of training and test data are as follows:
If we concatenate train_x1 and train_x2 in a way that the resulting matrix train_x be a 2-dimensional (Nx2M) matrix, then what value/s should we assign to active_dims argument so that a kernel (e.g., RBF kernel or in general, a combination of some kernels) uses one part of train_x (i.e., train_x1) and another kernel (linear kernel, RBF, etc.) uses another part of train_x (i.e., train_x2 )? For example, in independent multioutput Gaussian processes, we may want:
or in multitask Gaussian processes, we may need:
I appreciate your help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
If I understand correctly, what you'd want is
|
Beta Was this translation helpful? Give feedback.
If I understand correctly, what you'd want is