English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

LeVJEPA: Video Pretraining with 1/20th the Compute by Replacing Heuristics with One Regularizer

Forum topic · 小凯 · 2026-08-28

Summary

LeVJEPA (arXiv:2608.27395), by Lukas Kuhn, Lucas Maes, Giuseppe Serra, Quentin Le Lidec, Yann LeCun, Randall Balestriero, and Florian Buettner, simplifies video self-supervised pretraining by replacing V-JEPA's anti-collapse machinery (EMA target encoder, stop-gradient, capacity-limited predictor, tube masks) with a single regularizer called SIGReg. SIGReg forces embeddings toward an isotropic standard Gaussian, verified via the Cramér-Wold theorem and the Epps-Pulley normality statistic on random 1D projections, provably ruling out representation collapse. The resulting architecture is just an encoder plus a small projection head with a fixed loss weight (lambda = 0.02). It matches or beats V-JEPA 2 while using 1/5.6 to 1/20.8 of the compute across ViT-S/B/L sizes, tolerates uniformly dropping 95% of patch tokens (improving ImageNet-1K attentive probing from 33.9% to 47.6%), supports block-causal attention without accuracy loss (enabling streaming inference and world-model research), and achieves near-DINOv2 appearance performance with roughly double motion performance at matched FLOPs. A ViT-Tiny trained 12 hours on a single RTX 4090 yields non-trivial ImageNet accuracy, making video pretraining accessible to small labs.

LeVJEPA: Efficient & Scalable Video Pretraining without the Heuristics

Paper: LeVJEPA: Efficient & Scalable Video Pretraining without the Heuristics Authors: Lukas Kuhn, Lucas Maes, Giuseppe Serra, Quentin Le Lidec, Yann LeCun, Randall Balestriero, Florian Buettner arXiv: 2608.27395 (2026-08-27)

This forum post introduces LeVJEPA as the "subtraction philosophy" of video understanding — a *simpler* model from Yann LeCun's team that achieves better results with a fraction of the compute.

Why Video Pretraining Is Hard

  • Computational cost: A 10-second video is 240–300 frames — dozens to hundreds of times the compute of a single image, plus temporal/causal structure that image models never face.
  • Representation collapse: In self-supervised learning, a model can cheat by mapping all inputs to the same vector (like answering "C" on every exam question), producing perfect predictions while learning nothing.
  • V-JEPA's workarounds: The prior state of the art (also from LeCun's team) used an EMA target encoder, stop-gradient, a capacity-limited predictor, and carefully designed tube masks — effective but complex, hyperparameter-heavy, and expensive (three networks running at once).
  • The Core Idea: SIGReg

    LeVJEPA replaces all anti-collapse heuristics with SIGReg (Statistical Invariance Gaussian Regularization): force the embedding distribution to be an isotropic standard Gaussian. Collapsed representations (zero variance) are maximally far from this target, so collapse becomes impossible — provably. Isotropic Gaussians also minimize worst-case downstream probing risk under mild assumptions.

    Practical implementation via the Cramér–Wold theorem: 1. Sample random directions on the unit sphere per batch. 2. Project batch embeddings onto these directions. 3. Measure deviation from a 1D standard Gaussian with the Epps–Pulley statistic. 4. Sum deviations as the regularization loss — bounded, outlier-robust, no whitening or centering needed.

    Architecture Simplification

    | Component | V-JEPA / V-JEPA 2 | LeVJEPA | |---|---|---| | Anti-collapse | EMA encoder + stop-gradient + limited predictor | One SIGReg term | | Trainable architecture | Encoder + predictor + target net | Encoder + small projection head | | Loss hyperparameters | Many (EMA rate, mask strategy...) | Fixed λ = 0.02 | | Attention | Fully bidirectional | Block-causal works, no accuracy loss | | Token handling | Multi-block tube masks | Uniform random dropping (up to 95%) |

    Efficiency Results

  • 5.6×–20.8× less compute than V-JEPA 2 at matched epochs and data, across ViT-S/B/L, with equal or better performance.
  • 95% token dropping improves results: ImageNet-1K attentive probing accuracy rises from 33.9% to 47.6% — sparse observation acts as a powerful augmentation — while cutting FFN compute ~20×.
  • Block-causal attention enables streaming processing with constant per-frame incremental cost, and is a prerequisite for world models that predict the future without peeking at it.
  • Consumer GPU training: ViT-Tiny trained 12 hours on a single RTX 4090 on unlabeled walking videos achieves non-trivial ImageNet accuracy.
  • Benchmark Highlights

  • ImageNet-1K: at matched total FLOPs, LeVJEPA beats all video baselines by 7.6 points; versus compute-matched DINOv2 it nearly matches appearance tasks and roughly doubles motion performance.
  • Kinetics-400: highest accuracy among compared methods at matched FLOPs.
  • Something-Something-v2: aggressive 95% token dropping initially hurts motion-heavy tasks but the gap closes with longer training; it remains the most compute-efficient configuration.
  • Emergent dense representations: despite supervising only the [CLS] token, patch tokens spontaneously organize semantically (PCA cleanly separates foreground/background) — something V-JEPA 2.1 needed explicit patch-level auxiliary losses for.
  • Takeaway

    The post argues LeVJEPA exemplifies a recurring theme: solving a problem's essence (collapse = loss of distributional diversity) beats stacking engineering patches. As the paper concludes, once the computational burden is removed, video becomes a viable — and in several respects preferable — substrate for general visual pretraining, since video is the native format of the physical world.

    Reference

  • Kuhn, L., Maes, L., Serra, G., Le Lidec, Q., LeCun, Y., Balestriero, R., & Buettner, F. (2026). LeVJEPA: Efficient & Scalable Video Pretraining without the Heuristics. *arXiv preprint arXiv:2608.27395*. https://arxiv.org/abs/2608.27395

Tags

#levjepa#video-pretraining#self-supervised-learning#yann-lecun#representation-collapse#world-models#efficiency#deep-learning

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/178634185