Derive the VAE ELBO.
hardAnswer
- log p(x) = log ∫ p(z) dz ≥ (Jensen).
- ELBO decomposes into reconstruction (log-likelihood of x given z) minus KL to prior.
- Encoder q_φ parameterized as Gaussian ; decoder p_θ.
- Reparameterization trick: z = μ + σ ⊙ ε with ε ~ N(0, I) → backprop through sample.
- Optimize both φ, θ jointly.
Check yourself — multiple choice
- Random
- log p(x) ≥ ; reparam z = μ + σε; encoder q_φ + decoder p_θ trained jointly
- Same as AE
- Not derivable
VAE ELBO: recon - KL; reparam z = μ + σε for gradient flow.
#representation-learning#deep-learning
Practise Unsupervised Learning
214 interview questions in this topic.