parameterization changes take a while

This commit is contained in:
Max Zwiessele 2013-09-19 14:59:43 +01:00
parent 7a68950e3e
commit e5816e39dd

View file

@ -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)