示例#1
0
文件: sparse_gplvm.py 项目: Dalar/GPy
 def plot_latent(self, *args, **kwargs):
     GPLVM.plot_latent(self, *args, **kwargs)
示例#2
0
文件: sparse_gplvm.py 项目: Dalar/GPy
 def plot(self):
     GPLVM.plot(self)
     # passing Z without a small amout of jitter will induce the white kernel where we don;t want it!
     mu, var, upper, lower = SparseGPRegression.predict(self, self.Z + np.random.randn(*self.Z.shape) * 0.0001)
     pb.plot(mu[:, 0] , mu[:, 1], 'ko')