SlideShare ist ein Scribd-Unternehmen logo
1 von 8
Downloaden Sie, um offline zu lesen
CS229 Lecture notes
Andrew Ng

Part IX

The EM algorithm
In the previous set of notes, we talked about the EM algorithm as applied to
fitting a mixture of Gaussians. In this set of notes, we give a broader view
of the EM algorithm, and show how it can be applied to a large family of
estimation problems with latent variables. We begin our discussion with a
very useful result called Jensen’s inequality

1

Jensen’s inequality

Let f be a function whose domain is the set of real numbers. Recall that
f is a convex function if f (x) ≥ 0 (for all x ∈ R). In the case of f taking
vector-valued inputs, this is generalized to the condition that its hessian H
is positive semi-definite (H ≥ 0). If f (x) > 0 for all x, then we say f is
strictly convex (in the vector-valued case, the corresponding statement is
that H must be strictly positive semi-definite, written H > 0). Jensen’s
inequality can then be stated as follows:
Theorem. Let f be a convex function, and let X be a random variable.
Then:
E[f (X)] ≥ f (EX).
Moreover, if f is strictly convex, then E[f (X)] = f (EX) holds true if and
only if X = E[X] with probability 1 (i.e., if X is a constant).
Recall our convention of occasionally dropping the parentheses when writing expectations, so in the theorem above, f (EX) = f (E[X]).
For an interpretation of the theorem, consider the figure below.

1
2

f(a)

f

E[f(X)]
f(b)
f(EX)
a

E[X]

b

Here, f is a convex function shown by the solid line. Also, X is a random
variable that has a 0.5 chance of taking the value a, and a 0.5 chance of
taking the value b (indicated on the x-axis). Thus, the expected value of X
is given by the midpoint between a and b.
We also see the values f (a), f (b) and f (E[X]) indicated on the y-axis.
Moreover, the value E[f (X)] is now the midpoint on the y-axis between f (a)
and f (b). From our example, we see that because f is convex, it must be the
case that E[f (X)] ≥ f (EX).
Incidentally, quite a lot of people have trouble remembering which way
the inequality goes, and remembering a picture like this is a good way to
quickly figure out the answer.
Remark. Recall that f is [strictly] concave if and only if −f is [strictly]
convex (i.e., f (x) ≤ 0 or H ≤ 0). Jensen’s inequality also holds for concave
functions f , but with the direction of all the inequalities reversed (E[f (X)] ≤
f (EX), etc.).

2

The EM algorithm

Suppose we have an estimation problem in which we have a training set
{x(1) , . . . , x(m) } consisting of m independent examples. We wish to fit the
parameters of a model p(x, z) to the data, where the likelihood is given by
m

(θ) =

log p(x; θ)
i=1
m

=

log
i=1

p(x, z; θ).
z
3
But, explicitly finding the maximum likelihood estimates of the parameters θ
may be hard. Here, the z (i) ’s are the latent random variables; and it is often
the case that if the z (i) ’s were observed, then maximum likelihood estimation
would be easy.
In such a setting, the EM algorithm gives an efficient method for maximum likelihood estimation. Maximizing (θ) explicitly might be difficult,
and our strategy will be to instead repeatedly construct a lower-bound on
(E-step), and then optimize that lower-bound (M-step).
For each i, let Qi be some distribution over the z’s ( z Qi (z) = 1, Qi (z) ≥
0). Consider the following:1
log p(x(i) ; θ) =
i

p(x(i) , z (i) ; θ)

log
i

(1)

z (i)

Qi (z (i) )

p(x(i) , z (i) ; θ)
Qi (z (i) )

(2)

Qi (z (i) ) log

=

p(x(i) , z (i) ; θ)
Qi (z (i) )

(3)

log
i

z (i)

≥
i

z (i)

The last step of this derivation used Jensen’s inequality. Specifically, f (x) =
log x is a concave function, since f (x) = −1/x2 < 0 over its domain x ∈ R+ .
Also, the term
p(x(i) , z (i) ; θ)
Qi (z (i) )
Qi (z (i) )
(i)
z

in the summation is just an expectation of the quantity p(x(i) , z (i) ; θ)/Qi (z (i) )
with respect to z (i) drawn according to the distribution given by Qi . By
Jensen’s inequality, we have
f

Ez(i) ∼Qi

p(x(i) , z (i) ; θ)
Qi (z (i) )

≥ Ez(i) ∼Qi f

p(x(i) , z (i) ; θ)
Qi (z (i) )

,

where the “z (i) ∼ Qi ” subscripts above indicate that the expectations are
with respect to z (i) drawn from Qi . This allowed us to go from Equation (2)
to Equation (3).
Now, for any set of distributions Qi , the formula (3) gives a lower-bound
on (θ). There’re many possible choices for the Qi ’s. Which should we
choose? Well, if we have some current guess θ of the parameters, it seems
1

If z were continuous, then Qi would be a density, and the summations over z in our
discussion are replaced with integrals over z.
4
natural to try to make the lower-bound tight at that value of θ. I.e., we’ll
make the inequality above hold with equality at our particular value of θ.
(We’ll see later how this enables us to prove that (θ) increases monotonically
with successsive iterations of EM.)
To make the bound tight for a particular value of θ, we need for the step
involving Jensen’s inequality in our derivation above to hold with equality.
For this to be true, we know it is sufficient that that the expectation be taken
over a “constant”-valued random variable. I.e., we require that
p(x(i) , z (i) ; θ)
=c
Qi (z (i) )
for some constant c that does not depend on z (i) . This is easily accomplished
by choosing
Qi (z (i) ) ∝ p(x(i) , z (i) ; θ).
Actually, since we know
further tells us that

z

Qi (z (i) ) = 1 (because it is a distribution), this
p(x(i) , z (i) ; θ)
(i)
z p(x , z; θ)
p(x(i) , z (i) ; θ)
=
p(x(i) ; θ)
= p(z (i) |x(i) ; θ)

Qi (z (i) ) =

Thus, we simply set the Qi ’s to be the posterior distribution of the z (i) ’s
given x(i) and the setting of the parameters θ.
Now, for this choice of the Qi ’s, Equation (3) gives a lower-bound on the
loglikelihood that we’re trying to maximize. This is the E-step. In the
M-step of the algorithm, we then maximize our formula in Equation (3) with
respect to the parameters to obtain a new setting of the θ’s. Repeatedly
carrying out these two steps gives us the EM algorithm, which is as follows:
Repeat until convergence {
(E-step) For each i, set
Qi (z (i) ) := p(z (i) |x(i) ; θ).
(M-step) Set
Qi (z (i) ) log

θ := arg max
θ

i

z (i)

p(x(i) , z (i) ; θ)
.
Qi (z (i) )
5
}
How we we know if this algorithm will converge? Well, suppose θ (t)
and θ(t+1) are the parameters from two successive iterations of EM. We will
now prove that (θ (t) ) ≤ (θ(t+1) ), which shows EM always monotonically
improves the log-likelihood. The key to showing this result lies in our choice
of the Qi ’s. Specifically, on the iteration of EM in which the parameters had
(t)
started out as θ (t) , we would have chosen Qi (z (i) ) := p(z (i) |x(i) ; θ(t) ). We
saw earlier that this choice ensures that Jensen’s inequality, as applied to get
Equation (3), holds with equality, and hence
(t)

Qi (z (i) ) log

(θ(t) ) =
i

p(x(i) , z (i) ; θ(t) )
(t)

Qi (z (i) )

z (i)

.

The parameters θ (t+1) are then obtained by maximizing the right hand side
of the equation above. Thus,
(θ

(t+1)

(t)
Qi (z (i) ) log

) ≥
i

z (i)
(t)

Qi (z (i) ) log

≥
i

=

z (i)
(t)

p(x(i) , z (i) ; θ(t+1) )
(t)

Qi (z (i) )
p(x(i) , z (i) ; θ(t) )
(t)

Qi (z (i) )

(θ )

(4)
(5)
(6)

This first inequality comes from the fact that
Qi (z (i) ) log

(θ) ≥
i

z (i)

p(x(i) , z (i) ; θ)
Qi (z (i) )
(t)

holds for any values of Qi and θ, and in particular holds for Qi = Qi ,
θ = θ(t+1) . To get Equation (5), we used the fact that θ (t+1) is chosen
explicitly to be
Qi (z (i) ) log

arg max
θ

i

z (i)

p(x(i) , z (i) ; θ)
,
Qi (z (i) )

and thus this formula evaluated at θ (t+1) must be equal to or larger than the
same formula evaluated at θ (t) . Finally, the step used to get (6) was shown
(t)
earlier, and follows from Qi having been chosen to make Jensen’s inequality
hold with equality at θ (t) .
6
Hence, EM causes the likelihood to converge monotonically. In our description of the EM algorithm, we said we’d run it until convergence. Given
the result that we just showed, one reasonable convergence test would be
to check if the increase in (θ) between successive iterations is smaller than
some tolerance parameter, and to declare convergence if EM is improving
(θ) too slowly.
Remark. If we define
Qi (z (i) ) log

J(Q, θ) =
i

z (i)

p(x(i) , z (i) ; θ)
,
Qi (z (i) )

the we know (θ) ≥ J(Q, θ) from our previous derivation. The EM can also
be viewed a coordinate ascent on J, in which the E-step maximizes it with
respect to Q (check this yourself), and the M-step maximizes it with respect
to θ.

3

Mixture of Gaussians revisited

Armed with our general definition of the EM algorithm, lets go back to our
old example of fitting the parameters φ, µ and Σ in a mixture of Gaussians.
For the sake of brevity, we carry out the derivations for the M-step updates
only for φ and µj , and leave the updates for Σj as an exercise for the reader.
The E-step is easy. Following our algorithm derivation above, we simply
calculate
(i)
wj = Qi (z (i) = j) = P (z (i) = j|x(i) ; φ, µ, Σ).
Here, “Qi (z (i) = j)” denotes the probability of z (i) taking the value j under
the distribution Qi .
Next, in the M-step, we need to maximize, with respect to our parameters
φ, µ, Σ, the quantity
m

Qi (z (i) ) log
i=1 z (i)
m

p(x(i) , z (i) ; φ, µ, Σ)
Qi (z (i) )

k

Qi (z (i) = j) log

=
i=1 j=1
m

k
(i)
wj

=
i=1 j=1

log

p(x(i) |z (i) = j; µ, Σ)p(z (i) = j; φ)
Qi (z (i) = j)

1
(2π)n/2 |Σj |1/2

1
exp − 2 (x(i) − µj )T Σ−1 (x(i) − µj ) · φj
j
(i)

wj
7
Lets maximize this with respect to µl . If we take the derivative with respect
to µl , we find
k

m

(i)
wj

log

m

µl

1
(2π)n/2 |Σj |1/2

k

exp − 1 (x(i) − µj )T Σ−1 (x(i) − µj ) · φj
j
2
(i)

wj

i=1 j=1

= −

(i) 1

wj

µl
i=1 j=1

=

1
2

2

(x(i) − µj )T Σ−1 (x(i) − µj )
j

m
(i)

wl

T −1 (i)
µl 2µl Σl x

− µT Σ−1 µl
l
l

i=1
m
(i)

=

wl

Σ−1 x(i) − Σ−1 µl
l
l

i=1

Setting this to zero and solving for µl therefore yields the update rule
(i) (i)
m
i=1 wl x
,
(i)
m
wl
i=1

µl :=

which was what we had in the previous set of notes.
Lets do one more example, and derive the M-step update for the parameters φj . Grouping together only the terms that depend on φj , we find that
we need to maximize
m

k

(i)

wj log φj .
i=1 j=1

However, there is an additional constraint that the φj ’s sum to 1, since they
represent the probabilities φj = p(z (i) = j; φ). To deal with the constraint
that k φj = 1, we construct the Lagrangian
j=1
m

k

k
(i)
wj

L(φ) =

φj − 1),

log φj + β(

i=1 j=1

j=1

where β is the Lagrange multiplier.2 Taking derivatives, we find
∂
L(φ) =
∂φj
2

m

i=1

(i)

wj
+1
φj

We don’t need to worry about the constraint that φj ≥ 0, because as we’ll shortly see,
the solution we’ll find from this derivation will automatically satisfy that anyway.
8
Setting this to zero and solving, we get
φj =
I.e., φj ∝
that −β =

(i)

m
i=1

wj
−β

(i)
m
i=1 wj . Using the constraint
(i)
m
k
m
i=1
j=1 wj =
i=1 1 = m.

that

φj = 1, we easily find
(i)

(This used the fact that wj =

Qi (z (i) = j), and since probabilities sum to 1,
have our M-step updates for the parameters φj :
1
φj :=
m

j

(i)

j

wj = 1.) We therefore

m
(i)

wj .
i=1

The derivation for the M-step updates to Σj are also entirely straightforward.

Weitere ähnliche Inhalte

Was ist angesagt?

Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...
Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...
Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...
Avichai Cohen
 
2010 3-24 cryptography stamatiou
2010 3-24 cryptography stamatiou2010 3-24 cryptography stamatiou
2010 3-24 cryptography stamatiou
vafopoulos
 

Was ist angesagt? (20)

Chris Sherlock's slides
Chris Sherlock's slidesChris Sherlock's slides
Chris Sherlock's slides
 
DSP_FOEHU - MATLAB 02 - The Discrete-time Fourier Analysis
DSP_FOEHU - MATLAB 02 - The Discrete-time Fourier AnalysisDSP_FOEHU - MATLAB 02 - The Discrete-time Fourier Analysis
DSP_FOEHU - MATLAB 02 - The Discrete-time Fourier Analysis
 
Dcs lec02 - z-transform
Dcs   lec02 - z-transformDcs   lec02 - z-transform
Dcs lec02 - z-transform
 
boyd 11.6
boyd 11.6boyd 11.6
boyd 11.6
 
Stochastic Processes Assignment Help
Stochastic Processes Assignment HelpStochastic Processes Assignment Help
Stochastic Processes Assignment Help
 
DSP_FOEHU - MATLAB 03 - The z-Transform
DSP_FOEHU - MATLAB 03 - The z-TransformDSP_FOEHU - MATLAB 03 - The z-Transform
DSP_FOEHU - MATLAB 03 - The z-Transform
 
Unbiased Bayes for Big Data
Unbiased Bayes for Big DataUnbiased Bayes for Big Data
Unbiased Bayes for Big Data
 
Richard Everitt's slides
Richard Everitt's slidesRichard Everitt's slides
Richard Everitt's slides
 
Signals Processing Homework Help
Signals Processing Homework HelpSignals Processing Homework Help
Signals Processing Homework Help
 
Digital Signal Processing Assignment Help
Digital Signal Processing Assignment HelpDigital Signal Processing Assignment Help
Digital Signal Processing Assignment Help
 
Delayed acceptance for Metropolis-Hastings algorithms
Delayed acceptance for Metropolis-Hastings algorithmsDelayed acceptance for Metropolis-Hastings algorithms
Delayed acceptance for Metropolis-Hastings algorithms
 
Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...
Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...
Amirim Project - Threshold Functions in Random Simplicial Complexes - Avichai...
 
Markov chain Monte Carlo methods and some attempts at parallelizing them
Markov chain Monte Carlo methods and some attempts at parallelizing themMarkov chain Monte Carlo methods and some attempts at parallelizing them
Markov chain Monte Carlo methods and some attempts at parallelizing them
 
Time Series Analysis
Time Series AnalysisTime Series Analysis
Time Series Analysis
 
2010 3-24 cryptography stamatiou
2010 3-24 cryptography stamatiou2010 3-24 cryptography stamatiou
2010 3-24 cryptography stamatiou
 
1416336962.pdf
1416336962.pdf1416336962.pdf
1416336962.pdf
 
Modeling biased tracers at the field level
Modeling biased tracers at the field levelModeling biased tracers at the field level
Modeling biased tracers at the field level
 
Boyd chap10
Boyd chap10Boyd chap10
Boyd chap10
 
lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...
lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...
lassomodel, sparsity, multivariate modeling, NIR spectroscopy, biodiesel from...
 
Signals and systems assignment help
Signals and systems assignment helpSignals and systems assignment help
Signals and systems assignment help
 

Andere mochten auch

머피의 머신러닝: Undirencted Graphical Model
머피의 머신러닝: Undirencted Graphical Model머피의 머신러닝: Undirencted Graphical Model
머피의 머신러닝: Undirencted Graphical Model
Jungkyu Lee
 
앙상블 학습 기반의 추천시스템 개발
앙상블 학습 기반의 추천시스템 개발앙상블 학습 기반의 추천시스템 개발
앙상블 학습 기반의 추천시스템 개발
Jungkyu Lee
 
1. boolean 검색
1. boolean 검색1. boolean 검색
1. boolean 검색
Jungkyu Lee
 
파이널 판타지 3 루트 공략
파이널 판타지 3 루트 공략파이널 판타지 3 루트 공략
파이널 판타지 3 루트 공략
Jungkyu Lee
 
Murpy's Machine Learning 9. Generalize Linear Model
Murpy's Machine Learning 9. Generalize Linear ModelMurpy's Machine Learning 9. Generalize Linear Model
Murpy's Machine Learning 9. Generalize Linear Model
Jungkyu Lee
 
ThinkBayes: chapter 13  simulation
ThinkBayes: chapter 13  simulationThinkBayes: chapter 13  simulation
ThinkBayes: chapter 13  simulation
Jungkyu Lee
 
Murpy's Machine Learing: 10. Directed Graphical Model
Murpy's Machine Learing: 10. Directed Graphical ModelMurpy's Machine Learing: 10. Directed Graphical Model
Murpy's Machine Learing: 10. Directed Graphical Model
Jungkyu Lee
 
머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model
Jungkyu Lee
 
머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model
Jungkyu Lee
 
머피의 머신러닝 : Gaussian Processes
머피의 머신러닝 : Gaussian Processes머피의 머신러닝 : Gaussian Processes
머피의 머신러닝 : Gaussian Processes
Jungkyu Lee
 

Andere mochten auch (19)

머피의 머신러닝: Undirencted Graphical Model
머피의 머신러닝: Undirencted Graphical Model머피의 머신러닝: Undirencted Graphical Model
머피의 머신러닝: Undirencted Graphical Model
 
앙상블 학습 기반의 추천시스템 개발
앙상블 학습 기반의 추천시스템 개발앙상블 학습 기반의 추천시스템 개발
앙상블 학습 기반의 추천시스템 개발
 
8. Logistic Regression
8. Logistic Regression8. Logistic Regression
8. Logistic Regression
 
3 Generative models for discrete data
3 Generative models for discrete data3 Generative models for discrete data
3 Generative models for discrete data
 
머피's 머신러닝, Mixture model and EM algorithm
머피's 머신러닝, Mixture model and EM algorithm머피's 머신러닝, Mixture model and EM algorithm
머피's 머신러닝, Mixture model and EM algorithm
 
7. Linear Regression
7. Linear Regression7. Linear Regression
7. Linear Regression
 
4. Gaussian Model
4. Gaussian Model4. Gaussian Model
4. Gaussian Model
 
1. boolean 검색
1. boolean 검색1. boolean 검색
1. boolean 검색
 
Eigenvalues of regular graphs
Eigenvalues of regular graphsEigenvalues of regular graphs
Eigenvalues of regular graphs
 
파이널 판타지 3 루트 공략
파이널 판타지 3 루트 공략파이널 판타지 3 루트 공략
파이널 판타지 3 루트 공략
 
Murpy's Machine Learning 9. Generalize Linear Model
Murpy's Machine Learning 9. Generalize Linear ModelMurpy's Machine Learning 9. Generalize Linear Model
Murpy's Machine Learning 9. Generalize Linear Model
 
ThinkBayes: chapter 13  simulation
ThinkBayes: chapter 13  simulationThinkBayes: chapter 13  simulation
ThinkBayes: chapter 13  simulation
 
Murpy's Machine Learing: 10. Directed Graphical Model
Murpy's Machine Learing: 10. Directed Graphical ModelMurpy's Machine Learing: 10. Directed Graphical Model
Murpy's Machine Learing: 10. Directed Graphical Model
 
머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model
 
TETRIS AI WITH REINFORCEMENT LEARNING
TETRIS AI WITH REINFORCEMENT LEARNINGTETRIS AI WITH REINFORCEMENT LEARNING
TETRIS AI WITH REINFORCEMENT LEARNING
 
머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model머피's 머신러닝: Latent Linear Model
머피's 머신러닝: Latent Linear Model
 
From A Neural Probalistic Language Model to Word2vec
From A Neural Probalistic Language Model to Word2vecFrom A Neural Probalistic Language Model to Word2vec
From A Neural Probalistic Language Model to Word2vec
 
Support Vector Machine Tutorial 한국어
Support Vector Machine Tutorial 한국어Support Vector Machine Tutorial 한국어
Support Vector Machine Tutorial 한국어
 
머피의 머신러닝 : Gaussian Processes
머피의 머신러닝 : Gaussian Processes머피의 머신러닝 : Gaussian Processes
머피의 머신러닝 : Gaussian Processes
 

Ähnlich wie Jensen's inequality, EM 알고리즘

Machine learning (9)
Machine learning (9)Machine learning (9)
Machine learning (9)
NYversity
 
Machine learning (8)
Machine learning (8)Machine learning (8)
Machine learning (8)
NYversity
 
Machine learning (1)
Machine learning (1)Machine learning (1)
Machine learning (1)
NYversity
 
X01 Supervised learning problem linear regression one feature theorie
X01 Supervised learning problem linear regression one feature theorieX01 Supervised learning problem linear regression one feature theorie
X01 Supervised learning problem linear regression one feature theorie
Marco Moldenhauer
 
Machine learning (10)
Machine learning (10)Machine learning (10)
Machine learning (10)
NYversity
 

Ähnlich wie Jensen's inequality, EM 알고리즘 (20)

Machine learning (9)
Machine learning (9)Machine learning (9)
Machine learning (9)
 
Cs229 notes8
Cs229 notes8Cs229 notes8
Cs229 notes8
 
Cs229 notes7b
Cs229 notes7bCs229 notes7b
Cs229 notes7b
 
Machine learning (8)
Machine learning (8)Machine learning (8)
Machine learning (8)
 
CS229 Machine Learning Lecture Notes
CS229 Machine Learning Lecture NotesCS229 Machine Learning Lecture Notes
CS229 Machine Learning Lecture Notes
 
Machine learning (1)
Machine learning (1)Machine learning (1)
Machine learning (1)
 
stochastic processes assignment help
stochastic processes assignment helpstochastic processes assignment help
stochastic processes assignment help
 
New Method for Finding an Optimal Solution of Generalized Fuzzy Transportatio...
New Method for Finding an Optimal Solution of Generalized Fuzzy Transportatio...New Method for Finding an Optimal Solution of Generalized Fuzzy Transportatio...
New Method for Finding an Optimal Solution of Generalized Fuzzy Transportatio...
 
Approximation Methods Of Solutions For Equilibrium Problem In Hilbert Spaces
Approximation Methods Of Solutions For Equilibrium Problem In Hilbert SpacesApproximation Methods Of Solutions For Equilibrium Problem In Hilbert Spaces
Approximation Methods Of Solutions For Equilibrium Problem In Hilbert Spaces
 
Appendix to MLPI Lecture 2 - Monte Carlo Methods (Basics)
Appendix to MLPI Lecture 2 - Monte Carlo Methods (Basics)Appendix to MLPI Lecture 2 - Monte Carlo Methods (Basics)
Appendix to MLPI Lecture 2 - Monte Carlo Methods (Basics)
 
Statistics Exam Help
Statistics Exam HelpStatistics Exam Help
Statistics Exam Help
 
X01 Supervised learning problem linear regression one feature theorie
X01 Supervised learning problem linear regression one feature theorieX01 Supervised learning problem linear regression one feature theorie
X01 Supervised learning problem linear regression one feature theorie
 
Excel Homework Help
Excel Homework HelpExcel Homework Help
Excel Homework Help
 
Machine learning (10)
Machine learning (10)Machine learning (10)
Machine learning (10)
 
04_AJMS_254_19.pdf
04_AJMS_254_19.pdf04_AJMS_254_19.pdf
04_AJMS_254_19.pdf
 
ON OPTIMALITY OF THE INDEX OF SUM, PRODUCT, MAXIMUM, AND MINIMUM OF FINITE BA...
ON OPTIMALITY OF THE INDEX OF SUM, PRODUCT, MAXIMUM, AND MINIMUM OF FINITE BA...ON OPTIMALITY OF THE INDEX OF SUM, PRODUCT, MAXIMUM, AND MINIMUM OF FINITE BA...
ON OPTIMALITY OF THE INDEX OF SUM, PRODUCT, MAXIMUM, AND MINIMUM OF FINITE BA...
 
Stochastic Processes Assignment Help
Stochastic Processes Assignment HelpStochastic Processes Assignment Help
Stochastic Processes Assignment Help
 
Programming Exam Help
Programming Exam Help Programming Exam Help
Programming Exam Help
 
Fixed Point Results In Fuzzy Menger Space With Common Property (E.A.)
Fixed Point Results In Fuzzy Menger Space With Common Property (E.A.)Fixed Point Results In Fuzzy Menger Space With Common Property (E.A.)
Fixed Point Results In Fuzzy Menger Space With Common Property (E.A.)
 
Generalizing Addition and Multiplication to an Operator Parametrized by a Rea...
Generalizing Addition and Multiplication to an Operator Parametrized by a Rea...Generalizing Addition and Multiplication to an Operator Parametrized by a Rea...
Generalizing Addition and Multiplication to an Operator Parametrized by a Rea...
 

Kürzlich hochgeladen

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Kürzlich hochgeladen (20)

Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 

Jensen's inequality, EM 알고리즘

  • 1. CS229 Lecture notes Andrew Ng Part IX The EM algorithm In the previous set of notes, we talked about the EM algorithm as applied to fitting a mixture of Gaussians. In this set of notes, we give a broader view of the EM algorithm, and show how it can be applied to a large family of estimation problems with latent variables. We begin our discussion with a very useful result called Jensen’s inequality 1 Jensen’s inequality Let f be a function whose domain is the set of real numbers. Recall that f is a convex function if f (x) ≥ 0 (for all x ∈ R). In the case of f taking vector-valued inputs, this is generalized to the condition that its hessian H is positive semi-definite (H ≥ 0). If f (x) > 0 for all x, then we say f is strictly convex (in the vector-valued case, the corresponding statement is that H must be strictly positive semi-definite, written H > 0). Jensen’s inequality can then be stated as follows: Theorem. Let f be a convex function, and let X be a random variable. Then: E[f (X)] ≥ f (EX). Moreover, if f is strictly convex, then E[f (X)] = f (EX) holds true if and only if X = E[X] with probability 1 (i.e., if X is a constant). Recall our convention of occasionally dropping the parentheses when writing expectations, so in the theorem above, f (EX) = f (E[X]). For an interpretation of the theorem, consider the figure below. 1
  • 2. 2 f(a) f E[f(X)] f(b) f(EX) a E[X] b Here, f is a convex function shown by the solid line. Also, X is a random variable that has a 0.5 chance of taking the value a, and a 0.5 chance of taking the value b (indicated on the x-axis). Thus, the expected value of X is given by the midpoint between a and b. We also see the values f (a), f (b) and f (E[X]) indicated on the y-axis. Moreover, the value E[f (X)] is now the midpoint on the y-axis between f (a) and f (b). From our example, we see that because f is convex, it must be the case that E[f (X)] ≥ f (EX). Incidentally, quite a lot of people have trouble remembering which way the inequality goes, and remembering a picture like this is a good way to quickly figure out the answer. Remark. Recall that f is [strictly] concave if and only if −f is [strictly] convex (i.e., f (x) ≤ 0 or H ≤ 0). Jensen’s inequality also holds for concave functions f , but with the direction of all the inequalities reversed (E[f (X)] ≤ f (EX), etc.). 2 The EM algorithm Suppose we have an estimation problem in which we have a training set {x(1) , . . . , x(m) } consisting of m independent examples. We wish to fit the parameters of a model p(x, z) to the data, where the likelihood is given by m (θ) = log p(x; θ) i=1 m = log i=1 p(x, z; θ). z
  • 3. 3 But, explicitly finding the maximum likelihood estimates of the parameters θ may be hard. Here, the z (i) ’s are the latent random variables; and it is often the case that if the z (i) ’s were observed, then maximum likelihood estimation would be easy. In such a setting, the EM algorithm gives an efficient method for maximum likelihood estimation. Maximizing (θ) explicitly might be difficult, and our strategy will be to instead repeatedly construct a lower-bound on (E-step), and then optimize that lower-bound (M-step). For each i, let Qi be some distribution over the z’s ( z Qi (z) = 1, Qi (z) ≥ 0). Consider the following:1 log p(x(i) ; θ) = i p(x(i) , z (i) ; θ) log i (1) z (i) Qi (z (i) ) p(x(i) , z (i) ; θ) Qi (z (i) ) (2) Qi (z (i) ) log = p(x(i) , z (i) ; θ) Qi (z (i) ) (3) log i z (i) ≥ i z (i) The last step of this derivation used Jensen’s inequality. Specifically, f (x) = log x is a concave function, since f (x) = −1/x2 < 0 over its domain x ∈ R+ . Also, the term p(x(i) , z (i) ; θ) Qi (z (i) ) Qi (z (i) ) (i) z in the summation is just an expectation of the quantity p(x(i) , z (i) ; θ)/Qi (z (i) ) with respect to z (i) drawn according to the distribution given by Qi . By Jensen’s inequality, we have f Ez(i) ∼Qi p(x(i) , z (i) ; θ) Qi (z (i) ) ≥ Ez(i) ∼Qi f p(x(i) , z (i) ; θ) Qi (z (i) ) , where the “z (i) ∼ Qi ” subscripts above indicate that the expectations are with respect to z (i) drawn from Qi . This allowed us to go from Equation (2) to Equation (3). Now, for any set of distributions Qi , the formula (3) gives a lower-bound on (θ). There’re many possible choices for the Qi ’s. Which should we choose? Well, if we have some current guess θ of the parameters, it seems 1 If z were continuous, then Qi would be a density, and the summations over z in our discussion are replaced with integrals over z.
  • 4. 4 natural to try to make the lower-bound tight at that value of θ. I.e., we’ll make the inequality above hold with equality at our particular value of θ. (We’ll see later how this enables us to prove that (θ) increases monotonically with successsive iterations of EM.) To make the bound tight for a particular value of θ, we need for the step involving Jensen’s inequality in our derivation above to hold with equality. For this to be true, we know it is sufficient that that the expectation be taken over a “constant”-valued random variable. I.e., we require that p(x(i) , z (i) ; θ) =c Qi (z (i) ) for some constant c that does not depend on z (i) . This is easily accomplished by choosing Qi (z (i) ) ∝ p(x(i) , z (i) ; θ). Actually, since we know further tells us that z Qi (z (i) ) = 1 (because it is a distribution), this p(x(i) , z (i) ; θ) (i) z p(x , z; θ) p(x(i) , z (i) ; θ) = p(x(i) ; θ) = p(z (i) |x(i) ; θ) Qi (z (i) ) = Thus, we simply set the Qi ’s to be the posterior distribution of the z (i) ’s given x(i) and the setting of the parameters θ. Now, for this choice of the Qi ’s, Equation (3) gives a lower-bound on the loglikelihood that we’re trying to maximize. This is the E-step. In the M-step of the algorithm, we then maximize our formula in Equation (3) with respect to the parameters to obtain a new setting of the θ’s. Repeatedly carrying out these two steps gives us the EM algorithm, which is as follows: Repeat until convergence { (E-step) For each i, set Qi (z (i) ) := p(z (i) |x(i) ; θ). (M-step) Set Qi (z (i) ) log θ := arg max θ i z (i) p(x(i) , z (i) ; θ) . Qi (z (i) )
  • 5. 5 } How we we know if this algorithm will converge? Well, suppose θ (t) and θ(t+1) are the parameters from two successive iterations of EM. We will now prove that (θ (t) ) ≤ (θ(t+1) ), which shows EM always monotonically improves the log-likelihood. The key to showing this result lies in our choice of the Qi ’s. Specifically, on the iteration of EM in which the parameters had (t) started out as θ (t) , we would have chosen Qi (z (i) ) := p(z (i) |x(i) ; θ(t) ). We saw earlier that this choice ensures that Jensen’s inequality, as applied to get Equation (3), holds with equality, and hence (t) Qi (z (i) ) log (θ(t) ) = i p(x(i) , z (i) ; θ(t) ) (t) Qi (z (i) ) z (i) . The parameters θ (t+1) are then obtained by maximizing the right hand side of the equation above. Thus, (θ (t+1) (t) Qi (z (i) ) log ) ≥ i z (i) (t) Qi (z (i) ) log ≥ i = z (i) (t) p(x(i) , z (i) ; θ(t+1) ) (t) Qi (z (i) ) p(x(i) , z (i) ; θ(t) ) (t) Qi (z (i) ) (θ ) (4) (5) (6) This first inequality comes from the fact that Qi (z (i) ) log (θ) ≥ i z (i) p(x(i) , z (i) ; θ) Qi (z (i) ) (t) holds for any values of Qi and θ, and in particular holds for Qi = Qi , θ = θ(t+1) . To get Equation (5), we used the fact that θ (t+1) is chosen explicitly to be Qi (z (i) ) log arg max θ i z (i) p(x(i) , z (i) ; θ) , Qi (z (i) ) and thus this formula evaluated at θ (t+1) must be equal to or larger than the same formula evaluated at θ (t) . Finally, the step used to get (6) was shown (t) earlier, and follows from Qi having been chosen to make Jensen’s inequality hold with equality at θ (t) .
  • 6. 6 Hence, EM causes the likelihood to converge monotonically. In our description of the EM algorithm, we said we’d run it until convergence. Given the result that we just showed, one reasonable convergence test would be to check if the increase in (θ) between successive iterations is smaller than some tolerance parameter, and to declare convergence if EM is improving (θ) too slowly. Remark. If we define Qi (z (i) ) log J(Q, θ) = i z (i) p(x(i) , z (i) ; θ) , Qi (z (i) ) the we know (θ) ≥ J(Q, θ) from our previous derivation. The EM can also be viewed a coordinate ascent on J, in which the E-step maximizes it with respect to Q (check this yourself), and the M-step maximizes it with respect to θ. 3 Mixture of Gaussians revisited Armed with our general definition of the EM algorithm, lets go back to our old example of fitting the parameters φ, µ and Σ in a mixture of Gaussians. For the sake of brevity, we carry out the derivations for the M-step updates only for φ and µj , and leave the updates for Σj as an exercise for the reader. The E-step is easy. Following our algorithm derivation above, we simply calculate (i) wj = Qi (z (i) = j) = P (z (i) = j|x(i) ; φ, µ, Σ). Here, “Qi (z (i) = j)” denotes the probability of z (i) taking the value j under the distribution Qi . Next, in the M-step, we need to maximize, with respect to our parameters φ, µ, Σ, the quantity m Qi (z (i) ) log i=1 z (i) m p(x(i) , z (i) ; φ, µ, Σ) Qi (z (i) ) k Qi (z (i) = j) log = i=1 j=1 m k (i) wj = i=1 j=1 log p(x(i) |z (i) = j; µ, Σ)p(z (i) = j; φ) Qi (z (i) = j) 1 (2π)n/2 |Σj |1/2 1 exp − 2 (x(i) − µj )T Σ−1 (x(i) − µj ) · φj j (i) wj
  • 7. 7 Lets maximize this with respect to µl . If we take the derivative with respect to µl , we find k m (i) wj log m µl 1 (2π)n/2 |Σj |1/2 k exp − 1 (x(i) − µj )T Σ−1 (x(i) − µj ) · φj j 2 (i) wj i=1 j=1 = − (i) 1 wj µl i=1 j=1 = 1 2 2 (x(i) − µj )T Σ−1 (x(i) − µj ) j m (i) wl T −1 (i) µl 2µl Σl x − µT Σ−1 µl l l i=1 m (i) = wl Σ−1 x(i) − Σ−1 µl l l i=1 Setting this to zero and solving for µl therefore yields the update rule (i) (i) m i=1 wl x , (i) m wl i=1 µl := which was what we had in the previous set of notes. Lets do one more example, and derive the M-step update for the parameters φj . Grouping together only the terms that depend on φj , we find that we need to maximize m k (i) wj log φj . i=1 j=1 However, there is an additional constraint that the φj ’s sum to 1, since they represent the probabilities φj = p(z (i) = j; φ). To deal with the constraint that k φj = 1, we construct the Lagrangian j=1 m k k (i) wj L(φ) = φj − 1), log φj + β( i=1 j=1 j=1 where β is the Lagrange multiplier.2 Taking derivatives, we find ∂ L(φ) = ∂φj 2 m i=1 (i) wj +1 φj We don’t need to worry about the constraint that φj ≥ 0, because as we’ll shortly see, the solution we’ll find from this derivation will automatically satisfy that anyway.
  • 8. 8 Setting this to zero and solving, we get φj = I.e., φj ∝ that −β = (i) m i=1 wj −β (i) m i=1 wj . Using the constraint (i) m k m i=1 j=1 wj = i=1 1 = m. that φj = 1, we easily find (i) (This used the fact that wj = Qi (z (i) = j), and since probabilities sum to 1, have our M-step updates for the parameters φj : 1 φj := m j (i) j wj = 1.) We therefore m (i) wj . i=1 The derivation for the M-step updates to Σj are also entirely straightforward.