179 questions
No questions match those filters.
You need a system that generates realistic, diverse hum...
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansThe four standard approaches to image generation sit on a genuinely different point on the speed/quality/control/stability trade-off surface, and no single one dominates the others — which is why the “right” choice has to be read off the specific requirements rather than picked by reputation. VAEs are fast and stable but blurry. GANs are fast and sharp but hard to train. Autoregressive models are detailed and flexible but sequential, so generation time scales with output size. Diffusion models are detailed, controllable, and stable to train, but pay for all of that with dozens to a thousand sequential denoising steps at inference time.
A sub-second latency target functions as a hard filter here: it’s not that autoregressive and diffusion models can’t eventually be made fast (distillation, consistency models, and step-reduced samplers exist precisely to close this gap), but that doing so is additional project scope, not the default behavior of either architecture. If the interview or the product spec doesn’t call for that extra investment, picking the architecture that’s fast by default is the pragmatic answer.
Between the two fast options, the tie-breaker is that attribute control and image sharpness both favor GANs over VAEs, and both are explicitly in scope here. The honest trade-off to name out loud is GAN training instability — it’s real, well-documented, and needs a mitigation plan, not a reason to avoid the architecture outright.