-
Hi, Constant kernel is defined in Scikit-learn, Gpflow, and other Python libraries but it is not defined in GPyTorch. Thank you. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You need to subclass the |
Beta Was this translation helpful? Give feedback.
-
@GHU2021 were you ever able to get a constant kernel up and running? |
Beta Was this translation helpful? Give feedback.
You need to subclass the
Kernel
class and implement the behavior you need in theforward
method. Probably a good place to start to get some inspiration is theScaleKernel
implementation.