Can we use the Expectation Maximization algorithm for estimation of Gaussian Mixture Model with full covariance matrices?
If yes then can you please give me a reference paper? So far all the machine learning books I have consulted describes the estimation of only the diagonal covariance matrices.
If you are using python, all you need to do is add a parameter, covariance_type='full'.
For example,
m = mixture.GMM(n_components=3,covariance_type='diag')
Works for me.