Replies: 1 comment 1 reply
-
Not sure I completely follow here, but couldn't you write the covariance and mean functions as a sum of both GP models? |
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
-
Hi,
I want to use the
ExactGP
implementation to build a mixture model that combines several GPs. Example: GP1 applies to time series [0, 0, 1, 1] and GP2 applies to time series [1, 1, 1, 0]. This means that for time series 2 (index starting at 0) I would like to add both GPs: GP1+GP2. For that, I would assume that the best approach would be summing the covariances instead of summing the GPs, as:After summing the Cov matrices I would assume that I could implement the model as:
How could I add the Cov matrices following the above structure?
Thanks,
Luis
Beta Was this translation helpful? Give feedback.
All reactions