V-JEPA
V-JEPA is a video version of the Joint Embedding Predictive Architecture idea: encode visible context, predict missing target representations, and avoid reconstructing every pixel. It is part of self-supervised video representation learning, but its key design choice is latent prediction. The successor page V-JEPA 2 extends the framing toward understanding, prediction, and planning.
Predicting masked latents
Let be visible context and be a masked target region. A context encoder, target encoder, and predictor produce
with a latent prediction loss
Predicting representations encourages semantic structure and temporal consistency without spending all capacity on pixel-level detail.
Worked latent-prediction example
For two masked target tokens with three-dimensional latents, suppose the predictor and target encoder produce:
| token | predicted latent | target latent | squared error sum |
|---|---|---|---|
| 1 | 1.147 | ||
| 2 | 4.222 |
The mean squared error over the six latent coordinates is
The first token is already fairly close to its target, but the second misses the third coordinate badly. Training adjusts the predictor and context encoder so missing-target representations become predictable from the visible context.
Caveats
Latent prediction depends on target quality: a weak target encoder gives weak supervision. The method learns representations, not a language interface, so video-language models still need alignment if the product output is text. Evaluation should include motion-sensitive transfer, not only linear probes on static cues.
References
- Bardes et al., 2024, Revisiting Feature Prediction for Learning Visual Representations from Video
- Assran et al., 2025, V-JEPA 2
Nav