[var_dtc] constant jitter 1e-10

This commit is contained in:
mzwiessele 2015-02-24 11:55:22 +00:00
parent 11cc5d16f4
commit 85ae035e32

View file

@ -21,7 +21,7 @@ class VarDTC(LatentFunctionInference):
For efficiency, we sometimes work with the cholesky of Y*Y.T. To save repeatedly recomputing this, we cache it.
"""
const_jitter = 1e-6
const_jitter = 1e-10
def __init__(self, limit=1):
#self._YYTfactor_cache = caching.cache()
from ...util.caching import Cacher