Step through a VAE — watch the encoder compress input to a latent distribution (μ, σ), reparameterize to sample z, then decode back to reconstruct the input.
Encode → Sample → Decode
Unlike a standard autoencoder, VAE encodes to a DISTRIBUTION (μ, σ²) not a point. The reparameterization trick (z = μ + σ·ε) keeps gradients flowing while allowing stochastic sampling.