Added (SLOW) Pure Python implementations of flat_to_triang and triang_to_flat

This commit is contained in:
Mike Croucher 2015-04-01 15:42:49 +01:00
parent 27c65003d2
commit 985b2ea70c
4 changed files with 48 additions and 12 deletions

View file

@ -170,7 +170,7 @@ class VarDTC_minibatch(LatentFunctionInference):
Kmm = kern.K(Z).copy()
diag.add(Kmm, self.const_jitter)
if not np.isfinite(Kmm).all():
print Kmm
print(Kmm)
Lm = jitchol(Kmm)
LmInvPsi2LmInvT = backsub_both_sides(Lm,psi2_full,transpose='right')