From 7184cee6afb4a8d1a1909e45f7814348b024e4d2 Mon Sep 17 00:00:00 2001 From: Ricardo Date: Mon, 11 Nov 2013 14:23:55 +0000 Subject: [PATCH] Added **likelihood_params to predictive_values --- GPy/likelihoods/gaussian.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/likelihoods/gaussian.py b/GPy/likelihoods/gaussian.py index 85c028b4..c12d8e6d 100644 --- a/GPy/likelihoods/gaussian.py +++ b/GPy/likelihoods/gaussian.py @@ -69,7 +69,7 @@ class Gaussian(likelihood): self.covariance_matrix = np.eye(self.N) * x self._variance = x - def predictive_values(self, mu, var, full_cov): + def predictive_values(self, mu, var, full_cov, **likelihood_args): """ Un-normalize the prediction and add the likelihood variance, then return the 5%, 95% interval """