From 338f3295b15025e4abd9332042e53f80e9600c06 Mon Sep 17 00:00:00 2001 From: Nicolo Fusi Date: Fri, 12 Apr 2013 13:31:15 +0100 Subject: [PATCH] now returning the ax for plot_latent in BGPLVM --- GPy/models/Bayesian_GPLVM.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/GPy/models/Bayesian_GPLVM.py b/GPy/models/Bayesian_GPLVM.py index ba9603bb..aaaefa7f 100644 --- a/GPy/models/Bayesian_GPLVM.py +++ b/GPy/models/Bayesian_GPLVM.py @@ -95,3 +95,5 @@ class Bayesian_GPLVM(sparse_GP, GPLVM): input_1, input_2 = which_indices ax = GPLVM.plot_latent(self, which_indices=[input_1, input_2],*args, **kwargs) ax.plot(self.Z[:, input_1], self.Z[:, input_2], '^w') + + return ax