-
Hi, I've run this example:
the shape of prediction tensor is [10, 51, 4], i.e., num_data = 51 (size of test_x), num_tasks = 4 (set to the number of train_y features), while num_samples is always comes out as 10. Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
It's this setting: https://docs.gpytorch.ai/en/stable/settings.html#gpytorch.settings.num_likelihood_samples Basically when latent GPs are evaluated, gpytorch automatically draws several samples for usage in MC estimation over the latent GP. |
Beta Was this translation helpful? Give feedback.
It's this setting: https://docs.gpytorch.ai/en/stable/settings.html#gpytorch.settings.num_likelihood_samples
Basically when latent GPs are evaluated, gpytorch automatically draws several samples for usage in MC estimation over the latent GP.