psi1 is now the right way around

This commit is contained in:
James Hensman 2013-06-06 14:38:48 +01:00
parent a5208f474e
commit 5e4c24d652
5 changed files with 24 additions and 25 deletions

View file

@ -43,7 +43,7 @@ class SparseGPLVM(SparseGPRegression, GPLVM):
def dL_dX(self):
dL_dX = self.kern.dKdiag_dX(self.dL_dpsi0, self.X)
dL_dX += self.kern.dK_dX(self.dL_dpsi1.T, self.X, self.Z)
dL_dX += self.kern.dK_dX(self.dL_dpsi1, self.X, self.Z)
return dL_dX