mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-14 14:32:37 +02:00
parameterization changes take a while
This commit is contained in:
parent
7a68950e3e
commit
e5816e39dd
1 changed files with 1 additions and 1 deletions
|
|
@ -83,7 +83,7 @@ class SparseGP(GPBase):
|
||||||
|
|
||||||
def _computations(self):
|
def _computations(self):
|
||||||
if self._const_jitter is None or not(self._const_jitter.shape[0] == self.num_inducing):
|
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
|
# factor Kmm
|
||||||
self._Lm = jitchol(self.Kmm + self._const_jitter)
|
self._Lm = jitchol(self.Kmm + self._const_jitter)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue