Skip to content

Commit

Permalink
Home Page Intro
Browse files Browse the repository at this point in the history
  • Loading branch information
TheReconPilot committed Mar 27, 2022
1 parent 9c410ae commit ac8f370
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion index.md
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.

0 comments on commit ac8f370

Please sign in to comment.