Understanding concept of Gaussian Mixture Models

后端 未结 3 945
别那么骄傲
别那么骄傲 2020-11-30 17:51

I\'m trying to understand GMM by reading the sources available online. I have achieved clustering using K-Means and was seeing how GMM would compare to K-means.

Here

3条回答
  •  隐瞒了意图╮
    2020-11-30 18:34

    You are right, there is the same insight behind clustering with K-Means or GMM. But as you mentionned Gaussian Mixtures take data covariances into account. To find the maximum likelihood parameters (or maximum a posteriori MAP) of the GMM statistical model, you need to use an iterative process called the EM algorithm. Each iteration is composed of a E-step (Expectation) and a M-step (Maximization) and repeat until convergence. After convergence you can easily estimate the membership probabilities of each data vectors for each cluster model.

提交回复
热议问题