-
|
Hey :) I would like to model data with a linear transformation of GPs (as described here https://link.springer.com/chapter/10.1007/978-3-642-21738-8_20). The GP describes the spatial distribution of a physical quantity, and the linear transformation
Would be very thankful for any help! Cheers |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
AFAIK I don't think GPyTorch has a module implementing linear transfomation of GPs. Note that, however, a linear transformation of GPs is again a GP (with a different kernel like Eq (8) in the paper). Thus, you can implement the transformed GP in GPyTorch.
There is a way exploting the structure in GPyTorch. And GPyTorch relies on linear operators for this: https://github.com/cornellius-gp/linear_operator If you wrap your structured covariance matrix as a |
Beta Was this translation helpful? Give feedback.
AFAIK I don't think GPyTorch has a module implementing linear transfomation of GPs. Note that, however, a linear transformation of GPs is again a GP (with a different kernel like Eq (8) in the paper). Thus, you can implement the transformed GP in GPyTorch.
There is a way exploting the structure in GPyTorch. And GPyTorch relies on linear operators for this: https://github.com/cornellius-gp/linear_operator
If you wrap your structur…