Miguel A Hombrados
Results
1
comments of
Miguel A Hombrados
The kernel is defined as: ` kernel_cov = gpytorch.kernels.LinearKernel(batch_shape=torch.Size([num_task])) self.covar_module = gpytorch.kernels.ScaleKernel(kernel_cov, batch_shape=torch.Size([num_task]) ) + bias(batch_shape=torch.Size([num_task])) ` The class of the custom kernel is: `class bias(gpytorch.kernels.Kernel): # the sinc kernel...