gpytorch
gpytorch copied to clipboard
[Question] Implementation of ConstantKernel as in sklearn
Is there a constant/bias kernel defined? The equivalent to ".gaussian_process.kernels.ConstantKernel" in sklearn
Thank you!
Not really, although it looks like from the documentation of sklearn that you can use it as either an outputscale for the kernel analogous to gpytorch's ScaleKernel
or as an offset to the mean, analogous to gpytorch's ConstantMean
.