-
Hi, If we use ExactGPModel with for example ScaleKernel and RBFKernel, we can use the following commands to access kernels’ parameter values (values of lengthscale, outputscale) and noise variance: Similarly, if we use MultitaskGPModel or BatchIndependentMultitaskGPModel, how can we access to kernels' parameter values (e.g., if we define the addition of RBF kernel and linear kernel) in these models after we optimized these models? I appreciate you help. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Drop the model.covar_module.base_kernel.lengthscale
model.covar_module.raw_outputscale
model.likelihood.noise |
Beta Was this translation helpful? Give feedback.
Drop the
.item()
. E.g.