-
hi folks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
As you said, the prediction strategy will properly take the noise of the likelihood into account when computing the posterior distribution. For prediction, |
Beta Was this translation helpful? Give feedback.
As you said, the prediction strategy will properly take the noise of the likelihood into account when computing the posterior distribution. For prediction,
model(test_x)
provides the posterior over the latent function values. Applying thelikelihood
to that posterior gives you the posterior predictive, i.e. the distribution over the observed values (internally this is done by just by adding the observation noise to the diagonal of the posterior covariance).