What is expectation maximization in machine learning? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

What is expectation maximization in machine learning?

22nd Dec 2018, 2:52 AM
Hope
Hope - avatar
2 Answers
+ 1
Expectation-Maximization (EM) is an algorithm for maximum likelihood estimation in models with hidden variables (usually missing data or latent variables). By this algorithm the expected value from any model is maximized by the formula of mathematics the link below can help you more go once through that😊 https://metacademy.org/graphs/concepts/expectation_maximization https://www.kdnuggets.com/2016/08/tutorial-expectation-maximization-algorithm.html
22nd Dec 2018, 5:05 AM
MsJ
MsJ - avatar
+ 1
The Expectation-Maximization (EM) algorithm is a way to find maximum-likelihood estimates for model parameters when your data is incomplete, has missing data points, or has unobserved (hidden) latent variables. It is an iterative way to approximate the maximum likelihood function. While maximum likelihood estimation can find the “best fit” model for a set of data, it doesn’t work particularly well for incomplete data sets. The more complex EM algorithm can find model parameters even if you have missing data. It works by choosing random values for the missing data points, and using those guesses to estimate a second set of data. The new values are used to create a better guess for the first set, and the process continues until the algorithm converges on a fixed point. Read more at: https://www.statisticshowto.datasciencecentral.com/em-algorithm-expectation-maximization/
22nd Dec 2018, 5:06 AM
Шащи Ранжан
Шащи Ранжан - avatar