Reputation: 150
I have a 2-d multivariate Gaussian defined as
from scipy.stats import multivariate_normal
...
gauss_0_rv = multivariate_normal(means[0], covariances[0])
In my EM algorithm, I am calculating new mean and covarience in each iteration. Is there a way to assert new parameters to my gaussian RV, or do I have to define a new one and discard/delete the old distribution?
Upvotes: 0
Views: 81