diff --git a/tutorials/fit_model_with_torch_optimizer.ipynb b/tutorials/fit_model_with_torch_optimizer.ipynb index 49fd62507c..ffbb97c765 100644 --- a/tutorials/fit_model_with_torch_optimizer.ipynb +++ b/tutorials/fit_model_with_torch_optimizer.ipynb @@ -201,7 +201,9 @@ "metadata": {}, "source": [ "#### Compute posterior over test points and plot fit\n", - "We plot the posterior mean and the 2 standard deviations from the mean." + "We plot the posterior mean and the 2 standard deviations from the mean.\n", + "\n", + "Note: The posterior below is the posterior prediction for the underlying sinusoidal function, i.e., it does not include the observation noise. If we wanted to get the posterior prediction for the observations (including the predicted observation noise), we would instead use `posterior = posterior = model.posterior(test_X, observation_noise=True)`. " ] }, {