-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9c410ae
commit ac8f370
Showing
1 changed file
with
11 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
# Gaussian Mixture Models | ||
|
||
Semester Project on Gaussian Mixture Models | ||
Within a population, there may be normally distributed subpopulations. A Gaussian Mixture Model (GMM) can be used to represent them, and find these subpopulations. | ||
|
||
GMMs can be seen as an extension to K-Means Clustering. | ||
|
||
In K-Means, we have some data and we want to identify the clusters in this data population. K-Means Clustering assigns each point to a single cluster, and we get the cluster centers as a result. However, this is a hard clustering method. Each point only belongs to a single cluster. | ||
|
||
GMM is a soft clustering method. Instead of assigning a point to a single cluster, we assign probabilities for a point belonging to each of the clusters. GMMs assume the data has normally distributed subpopulations, so each cluster is modelled as a Gaussian. The mixture of these Gaussians is what forms the GMM. | ||
|
||
```{tableofcontents} | ||
``` | ||
|
||
--- | ||
|
||
This site is the result of a Semester Project on Gaussian Mixture Models by Goirik Chakrabarty and Purva Parmar, under Prof Leelavati Narlikar at IISER Pune. |