EM-Algorithm Flashcards

1
Q

What is the general idea if the EM-algorithm

A
  1. fill in missing values by estimated values
  2. estimate parameters given the filled in values
  3. re-estimate missing values with new parameter estimates
  4. re-estimate parameters etc….

iterate until convergence of parameters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the missing data mechanisms taken into account by EM-algorithm

A

MAR and MCAR

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does the EM-algorithm consist of?

A

Expectation step and a maximisation step

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

One advantage and one disadvantage of EM-algorithm

A

+ will reliably converge

- rate of convergence can be too slow when large fraction of missing information

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What does the E-step do?

A

Calculates the conditional expectation of complete data log likelihood given the observed data and current estimates of parameters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does the M-step do?

A

Performs maximum likelihood estimation on the (conditional) expected log likelihood found in E-step

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Formal definition of the E-step

A

Q(θ, θ(t)) = Eymis[ l(θ | Yobs, Ymis) | Yobs, θ(t) ]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Formal definition of the M-step

A

θ(t+1) = arg max(θ) Q(θ | θ(t)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What does the GEM-algorithm do differently?

A

θ(t+1) not chosen to globally maximise Q(θ | θ(t) ) but rather to ensure Q(θ(t+1) | θ(t) ) is greater than Q(θ(t-1) | θ(t))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Explain stability / monotonicity in terms of EM-algorithm

A

Each step in the EM-algorithm leads to an observed likelihood that is greater than or equal to the previous likelihood

log ( L( θ(t+1) | Yobs) ) ≥ log ( L( θ(t) | Yobs) )

How well did you know this?
1
Not at all
2
3
4
5
Perfectly