예제 #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')