Back to Multimodal Mind Map
中文·English
👁️ MultimodalID: jepa

JEPA Joint-Embedding Prediction

JEPA 联合嵌入预测
🎯Core Definition
JEPA (Joint Embedding Predictive Architecture) does predictive self-supervised learning in latent space: a context encoder gg takes the current latent ztz_t and action ata_t and predicts the target representation f(zt+1)f(z_{t+1}), where the target encoder ff is updated by EMA (exponential moving average). The training loss is: =g(zt,at)f(zt+1)2\ell = \lVert g(z_t, a_t) - f(z_{t+1}) \rVert^2 i.e. mean squared error between the predicted and target representations. The EMA target plus the asymmetric structure (no gradient to ff) prevents representational collapse, so no negative samples are needed.
💡Use Cases
self-supervised representation learning for images/videos (I-JEPA, V-JEPA), world-model learning; a common interview entry is 'JEPA vs VAE/diffusion reconstruction'.
Key Problems Solved
VAE/diffusion reconstruct in pixel space, wasting compute on unpredictable details (background, texture); JEPA predicts only in abstract latent space and discards unpredictable components — lower compute and more semantic representations, with large gains on downstream linear probing and few-shot classification.
🎯5 High-Frequency Exam Points
1
Write JEPA's latent prediction loss and explain gg, ff, ztz_t, ata_t?
2
What does the EMA target encoder do? Why doesn't JEPA collapse without negative samples?
3
What is the essential difference between JEPA and VAE/diffusion reconstruction?
4
How does V-JEPA apply JEPA to video understanding? What representation is predicted?
5
JEPA vs contrastive learning (CLIP/InfoNCE): differences in objective and negative-sample usage?
📖 In-depth Guide:📄 world-models-jepa
Updated 2026-08-12
🎯
Test Your Knowledge: Practice Questions for "JEPA Joint-Embedding Prediction"
Single choice pitfall questions with instant feedback and mistake tracking.
🚀 Start Card Practice
Previous CardRVQ Codebooks & TokensNext CardWorld Model Applications

🔗 More Multimodal Knowledge Cards

ASR (Whisper)Audio RepresentationClassifier-Free GuidanceCLIP Applications