From e5816e39dd4776481b780ddd9634243af362e521 Mon Sep 17 00:00:00 2001 From: Max Zwiessele Date: Thu, 19 Sep 2013 14:59:43 +0100 Subject: [PATCH] parameterization changes take a while --- GPy/core/sparse_gp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GPy/core/sparse_gp.py b/GPy/core/sparse_gp.py index 40cfd404..1b5fd814 100644 --- a/GPy/core/sparse_gp.py +++ b/GPy/core/sparse_gp.py @@ -83,7 +83,7 @@ class SparseGP(GPBase): def _computations(self): if self._const_jitter is None or not(self._const_jitter.shape[0] == self.num_inducing): - self._const_jitter = np.eye(self.num_inducing) * 1e-7 + self._const_jitter = np.eye(self.num_inducing) * 1e-8 # factor Kmm self._Lm = jitchol(self.Kmm + self._const_jitter)