Back to Multimodal Mind Map
中文·English
👁️ MultimodalID: video-generation

Video Generation

视频生成
🎯Core Definition
Video generation adds temporal modeling on top of image diffusion, treating a video as a high-dimensional tensor xRF×H×W×3x \in \mathbb{R}^{F \times H \times W \times 3} (FF RGB frames). Video diffusion keeps the DDPM noise-prediction objective Et,x,ϵ[ϵϵθ(xt,t,c)2]\mathbb{E}_{t,x,\epsilon}\left[\Vert \epsilon - \epsilon_\theta(x_t, t, c) \Vert^2\right]; the difference lies in how the temporal axis is modeled:
📌Overview
1. 3D-conv U-Net (Video Diffusion Models): 2D convs become spatio-temporal 3D convs with shared weights across frames, implicitly modeling time, seamless with image pretraining but with limited temporal receptive field;
📌Overview
2. Factorized attention: spatial attention followed by temporal attention, cutting complexity from O(F2H2W2)O(F^2 H^2 W^2) to O(FHW(FH+HW))O(FHW \cdot (FH + HW)), a transitional design (ManyWorlds/VDM);
📌Overview
3. Causal spatio-temporal attention (Sora-style DiT): the mask forces frame tt to attend only to ttt' \le t (Mi,j=,tj>tiM_{i,j} = -\infty, \forall t_j > t_i), explicitly causal and supporting arbitrary length/resolution at inference.
📌Overview
Cascade generation is standard: first generate a low-resolution backbone (latent frames F/4×H/8×W/8F/4 \times H/8 \times W/8), then two spatio-temporal upsamplers enlarge it toward 1080p; each stage trains independently and runs in sequence, cutting memory and sampling cost drastically.
💡Use Cases
text-to-video (Sora / Kling / Veo / Runway Gen-3), image-to-video, video extension and editing; interviews probe the three temporal-modeling options and cascade roles.
Key Problems Solved
video data is scarce, static/repetitive clips abound, and text-video alignment is noisy; cascade + causal modeling learns global motion at low resolution first, then high-frequency texture, mitigating flicker, motion drift and uncontrollable one-shot generation.
🎯5 High-Frequency Exam Points
1
How do video diffusion models model time — tradeoffs among 3D conv, factorized attention, and causal attention?
2
How is the causal attention mask written, and what does it unlock?
3
What is cascade generation, and what does each spatio-temporal upsampler do?
4
Common video artifacts (flicker/drift/repetition) — causes and mitigations?
5
Key video training-data challenges compared with image data?
📖 In-depth Guide:📄 diffusion-models
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Video Generation"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardSampler Acceleration (DDIM/DPM-Solver/LCM)Next CardDiT & 3D Causal VAE

🔗 More Multimodal Knowledge Cards

ASR (Whisper)Audio RepresentationClassifier-Free GuidanceCLIP Applications