Skip to content

Commit

Permalink
gmm_creation
Browse files Browse the repository at this point in the history
  • Loading branch information
beiwang committed Nov 11, 2016
1 parent 6aab528 commit 5676013
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions GPy/models/gmm_bayesian_gplvm.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,12 @@ def __init__(self, Y, input_dim, X=None, X_variance=None, init='PCA', n_componen
# 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)
Expand Down

0 comments on commit 5676013

Please sign in to comment.