@TheTuringPost: A new paper from @ylecun, @randall_balestr and colleagues extending LeJEPA – this time to video. LeVJEPA's goal is to m…
Summary
LeVJEPA extends LeJEPA to video for efficient training, using one encoder and projector to process only 5% of video patches, matching or beating V-JEPA 2 with significantly less compute.
View Cached Full Text
Cached at: 08/30/26, 12:18 PM
A new paper from @ylecun, @randall_balestr and colleagues extending LeJEPA – this time to video.
LeVJEPA’s goal is to make video training much cheaper and simpler.
For this, it uses just one encoder + a small projector. The projector is thrown away afterward ↓
LeVJEPA works like this:
-
It takes the same 16-frame video clip and creates several versions of it: one full view and several cropped/augmented views. The same encoder processes all of them.
-
Then the model learns to do 2 things:
- Recognize different views of the same video and keep their representations similar.
- Avoid learning the same representation for everything. SIGReg (the regularization method used in LeJEPA) prevents representations from collapsing, keeping them varied.
And these two design choices also make LeVJEPA more efficient:
→ It processes only 5% of the video patches during training. The other 95% are randomly dropped to cut compute.
→ Attention is causal across time: each frame uses only the current and previous frames, and the model updates its representation as new frames arrive.
This matters for streaming video and world models that operate continuously and need to update their “understanding” as new observations arrive.
Thanks to all this, LeVJEPA matches or beats V-JEPA 2 with 5.6–20.8× less training compute at matched epochs.
Similar Articles
AV-JEPA: Extending LeJEPA to Audio-Visual Self-Supervised Learning
AV-JEPA extends LeJEPA to audio-visual self-supervised learning, achieving cross-modal alignment in latent space without decoders, contrastive negatives, or complex losses, and obtains competitive classification on VGGSound and AudioSet.
@lukaskuhn77: We introduce LeVLJEPA: the first fully non-contrastive end-to-end vision-language pretraining method competitive with C…
LeVLJEPA is the first fully non-contrastive end-to-end vision-language pretraining method, achieving competitive performance with CLIP and SigLIP without negatives, temperature, or momentum encoder. It learns via cross-modal prediction with stop-gradient targets and per-modality distributional regularization, providing stronger dense semantic features for downstream tasks like VLM backbones and semantic segmentation.
@LeRobotHF: VLA-JEPA just dropped in LeRobot What makes this model special is that it does not just learn what action to take from …
VLA-JEPA, a new model integrating a JEPA world model for action-relevant dynamics, has been released in LeRobot. It enables pretraining on human videos and achieves strong performance with minimal fine-tuning, running real-time on NVIDIA DGX Spark.
@LeoKharon: NEW WORLD MODEL: @ylecun's team is back with an efficient model! This project involves @ylecun, @lukaskuhn77, @lucasmae…
LeVJEPA introduces a more efficient self-supervised video pretraining approach by eliminating the need for target networks and predictors, using a single shared encoder with SIGReg regularizer, and achieving competitive performance with lower compute costs.
The Annotated JEPA
A step-by-step annotated implementation and explanation of Joint Embedding Predictive Architectures (JEPA) for self-supervised learning, covering I-JEPA, V-JEPA, and LeJEPA.