From 567601344c96da8cee3d43c8e589a94b37293b9c Mon Sep 17 00:00:00 2001 From: beiwang Date: Fri, 11 Nov 2016 19:18:39 +0000 Subject: [PATCH] gmm_creation --- GPy/models/gmm_bayesian_gplvm.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/GPy/models/gmm_bayesian_gplvm.py b/GPy/models/gmm_bayesian_gplvm.py index 8d39e725..88c79c76 100644 --- a/GPy/models/gmm_bayesian_gplvm.py +++ b/GPy/models/gmm_bayesian_gplvm.py @@ -55,15 +55,12 @@ class GmmBayesianGPLVM(SparseGP_MPI): # Need to define what the model is initialised like pi = np.ones(n_component) / float(n_component) # p(k) variational_pi = pi.copy() - # px_mu = np.zeros(n_component) - # px_var = np.ones(n_component) px_mu = [[]] * n_component px_var = [[]] * n_component for i in range(n_component): px_mu[i] = np.zeros(X_variance.shape) px_var[i] = np.ones(X_variance.shape) - # print("Should print") # print(pi) # print(px_mu)