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

Progressive Video Training

视频渐进训练
🎯Core Definition
Text-to-video training follows a three-stage progressive recipe (Sora, Stable Video Diffusion, Kling and others), gradually introducing the video distribution:
📌Overview
1. Image pretraining: train on massive image-text pairs (or load a T2I checkpoint) to learn static semantics, composition and text alignment — images are abundant, cheap and high quality, giving the model a “static prior”;
📌Overview
2. Joint image-video training: add short clips (usually 3-10 s, 256-512p) mixed with images (video often only 5-20% of the batch), training the 3D modules (3D conv or causal attention) for motion and frame consistency;
📌Overview
3. HD fine-tuning: raise resolution (256→480→720p→1080p) and duration (4 s→16 s→longer) progressively with curated high-quality data at a small learning rate, layering high-frequency texture onto the learned motion distribution without exploding compute.
📌Overview
Aspect-ratio bucketing: samples are grouped into buckets by aspect ratio/resolution (16:9, 9:16, 1:1…), and every batch is single-bucket — avoiding geometric distortion from naive resizing; standard in SD/Sora pipelines.
📌Overview
Motion filtering: optical flow (e.g. RAFT) or frame differencing estimates each clip's dynamism; static, subtitle-only and low-motion samples are dropped (flow magnitude below a threshold), also helping filter misaligned text-video pairs.
💡Use Cases
training or continuing text-to-video models; interviews probe per-stage freezing strategies, data mixing ratios and HD fine-tune details.
Key Problems Solved
direct end-to-end training at high resolution/long duration is data-starved and compute-prohibitive; the progressive recipe learns the bulk of the distribution first (static + low-res motion) then fine detail, while bucketing and flow filtering clean the data — the de facto optimal video-diffusion training pipeline.
🎯5 High-Frequency Exam Points
1
What does each of the three training stages learn, and why is the order fixed?
2
What does aspect-ratio bucketing solve, and how is a single batch organized?
3
Why filter training clips with optical flow, and how is the threshold set?
4
Learning-rate and data-selection choices in the HD fine-tune stage?
5
Why does image pretraining benefit video generation?
📖 In-depth Guide:📄 diffusion-models
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "Progressive Video Training"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardDiffusion Training Objectives (ε/v-pred, Zero-SNR)Next CardAudio Representation

🔗 More Multimodal Knowledge Cards

ASR (Whisper)Classifier-Free GuidanceCLIP ApplicationsCLIP Two-Tower Architecture