Merge branch 'devel' of github.com:SheffieldML/GPy into devel

This commit is contained in:
Max Zwiessele 2013-06-04 17:28:13 +01:00
commit 29790e327a
4 changed files with 34 additions and 31 deletions

View file

@ -185,7 +185,7 @@ class Bayesian_GPLVM(sparse_GP, GPLVM):
return self._clipped(np.hstack((self.dbound_dmuS.flatten(), self.dbound_dZtheta)))
def plot_latent(self, *args, **kwargs):
plot_latent.plot_latent_indices(self, *args, **kwargs)
return plot_latent.plot_latent_indices(self, *args, **kwargs)
def do_test_latents(self, Y):
"""

View file

@ -64,4 +64,4 @@ class GPLVM(GP):
pb.plot(mu[:,0], mu[:,1],'k',linewidth=1.5)
def plot_latent(self, *args, **kwargs):
util.plot_latent.plot_latent(self, *args, **kwargs)
return util.plot_latent.plot_latent(self, *args, **kwargs)