2019-01-13[Stay Sharp]Gaussian mixture model

What is gaussian mixture model ?

Gaussian mixture models are a probabilistic model for representing normally distributed subpopulations within an overall population.

974368-b68611e0b4185eb8.png
image.png

The model is parameterized by two types of values:

  • the mixture component weights
  • the component means and variances.
    For a Gaussian mixture model with components.


where and is the mean and variance to the components, and is the correspoing component weight. from the last equation we get the total probability distribution normalizes to 1.

clustering with Gaussian mixture models

we assume that the data points are gaussian distributed, each gaussian distribution is assigned to a single cluster.

we often use Expectation-Maximization(EM) to find the parameters of the Gaussian model for each cluster.

References

https://people.csail.mit.edu/rameshvs/content/gmm-em.pdf

https://brilliant.org/wiki/gaussian-mixture-model/

猜你喜欢

转载自blog.csdn.net/weixin_34296641/article/details/86826424
今日推荐