16Explain the EM algorithm and walk through it for a Gaussian Mixture Model.▼hardAmazonGoogleMicrosoft1 replies○ sign inEM is the canonical latent-variable algorithm, and a GMM is how it shows up in practice. The signal is the E-step/M-step alternation, why it is soft clustering where k-means is hard, and the honest caveat that it only finds a local optimum. Here is the answer.Open full answer →
99Your GMM via EM keeps diverging to infinite likelihood or collapsing clusters. What is going on?▼hardGoogleMicrosoftNVIDIA2 replies◆ premiumEM on a Gaussian mixture has a famous failure mode: a Gaussian collapses onto one point and likelihood shoots to infinity. Knowing why, and the three standard fixes, separates people who used sklearn from people who understand it.Open full answer →