Papers
Topics
Authors
Recent
Search
2000 character limit reached

V-JEPA 2.1: Advancing Visual Self-Supervision

Updated 20 March 2026
  • The paper introduces V-JEPA 2.1, which integrates dense visual representation learning with a quasi-metric goal-conditioned planning approach for superior performance.
  • It employs techniques like masked-prediction, multi-modal tokenization, and deep self-supervision to extract high-quality spatial features and robust global scene understanding.
  • Empirical evaluations demonstrate state-of-the-art improvements in benchmarks such as action recognition, depth estimation, and robotic control over previous JEPA versions.

V-JEPA 2.1 is a family of models built on Joint-Embedding Predictive Architectures (JEPA) that advance visual self-supervised learning across both dense and goal-conditioned planning tasks. In the visual domain, V-JEPA 2.1 defines a paradigm for extracting high-quality, spatially structured visual representations from images and videos while preserving robust global scene understanding. In reinforcement learning and planning, its value-guided variant introduces a quasi-metric goal-conditioned value function into JEPA world models, facilitating effective model-based control. The architecture systematically integrates dense predictive losses, deep self-supervision, multi-modal tokenization, and effective scaling strategies. Across both domains, V-JEPA 2.1 establishes state-of-the-art performance on benchmarks spanning visual semantics, depth, action recognition, anticipation, and robotic control (Destrade et al., 28 Dec 2025, Mur-Labadia et al., 15 Mar 2026).

1. Model Architecture and Principles

V-JEPA 2.1 architectures are defined in two principal contexts:

  • Dense visual representation learning utilizes Vision Transformers (ViT) with masked-prediction jointly embedding images and videos.
  • Goal-conditioned planning utilizes a convolutional or residual encoder for low-dimensional states or images, a latent dynamical predictor, and a value function shaped by a goal-conditioned quasi-metric.

Dense Visual Models

  • Tokenization: Separate 2D and 3D convolutional patch embeddings produce tokens for images and videos, respectively. Learned modality embeddings are prepended, and rotary positional encodings (RoPE) are applied accordingly.
  • Masking: Spatio-temporal masking creates a corrupted (“student”) view xx and a clean “teacher” view yy.
  • Encoding/Prediction: The student encoder EθE_\theta yields per-patch tokens; a predictor PϕP_\phi fuses visible (context) and mask tokens to predict teacher targets.
  • Multi-level Outputs: Extracted from various intermediate transformer blocks and concatenated for downstream prediction, enabling deep self-supervision.

Goal-Conditioned World Models

  • State encoder EθE_\theta: Maps sS0s\in S_0 to embedding eθ(s)Rde_\theta(s)\in\mathbb{R}^d.
  • Action encoder AA: Small MLP or identity function mapping ata_t to latent aˉt\bar{a}_t.
  • Predictor PϕP_\phi: Predicts future embedding z^t+1t=Pϕ(eθ(st),aˉt)\hat{z}_{t+1|t}=P_\phi(e_\theta(s_t),\bar{a}_t).
  • Goal-conditioned value: Vψ(s,g)dψ(eθ(s),eθ(g))V_\psi(s,g)\approx-d_\psi(e_\theta(s),e_\theta(g)) with dψd_\psi defined via either Euclidean or learnable quasi-metric form.

2. Loss Functions and Training Methodologies

Dense Predictive Loss

The dense loss encourages learning of both local (per-patch) and global features. For visual models, the loss at layer \ell is:

Ldense=1M(i,t)Mz^i,tzi,t1+1C(j,s)Cλj,sz^j,szj,s1L^\ell_{\text{dense}} = \frac{1}{|M|}\sum_{(i,t)\in M}\|\hat{z}^\ell_{i,t} - z^\ell_{i,t}\|_1 + \frac{1}{|C|}\sum_{(j,s)\in C} \lambda_{j,s}\|\hat{z}^\ell_{j,s} - z^\ell_{j,s}\|_1

where λj,s\lambda_{j,s} is a weighting dependent on proximity to masked regions, with the final recipe:

$\lambda_{j,s} = \lambda_0 / \sqrt{d_\min((j,s),M)}$

Deep self-supervision sums such losses over multiple encoder depths \ell.

Value-Shaping and Predictive Objectives

The goal-conditioned planning variant incorporates:

  • JEPA prediction loss:

Lpred(θ,ϕ)=EtPϕ(eθ(st),aˉt)eθ(st+1)22+λVCLVCReg({eθ(s)})L_{\text{pred}}(\theta, \phi) = \mathbb{E}_t \|P_\phi(e_\theta(s_t),\bar{a}_t) - e_\theta(s_{t+1})\|_2^2 + \lambda_{\text{VC}} L_{\text{VCReg}}(\{e_\theta(s)\})

where LVCRegL_{\text{VCReg}} (e.g., VICReg) regularizes the embedding to prevent collapse.

  • Goal-conditioned value loss (IQL-style):

LVF(θ,ψ)=E(st,st+1,g)Lτ2(rt(st,g)+γVˉψ(st+1,g)Vψ(st,g))L_{\text{VF}}(\theta, \psi) = \mathbb{E}_{(s_t,s_{t+1},g)} L_\tau^2(r_t(s_t,g) + \gamma \bar{V}_\psi(s_{t+1},g) - V_\psi(s_t,g))

with expectile regression, where rt(st,g)=1stgr_t(s_t,g) = -\mathbf{1}_{s_t\neq g}, γ\gamma is a discount factor, and τ\tau is the expectile level.

Training schedules include both joint minimization and a “separate” regime where the encoder is value-shaped, then frozen.

3. Value-Guided Goal Conditioned Planning (Quasi-Distance)

The hallmark feature of V-JEPA 2.1 in world modeling is the use of a learnable quasi-metric to approximate the negative value function for goal reaching. The quasi-metric network Qψ:RdRkQ_\psi:\mathbb{R}^d\rightarrow\mathbb{R}^k yields:

dψ(u,v)=Qψ(u)Qψ(v)2d_\psi(u, v) = \|Q_\psi(u) - Q_\psi(v)\|_2

The approach enables encoding of non-symmetric and subspace-constrained value relations. Empirically, this adjustment substantially improves planning success rates over both pure prediction-based and Euclidean value shaped models.

4. Key Empirical Results and Ablations

V-JEPA 2.1 outperforms prior models across dense and global visual tasks, control, and planning:

Task Metric V-JEPA 2.0 V-JEPA 2.1 ViT-g V-JEPA 2.1 ViT-G
Ego4D STA mAP_All (↑) 6.02 6.75 7.71
EK100 Anticip. Recall@5 (↑) 39.7 38.4 40.8
SSv2 Action Rec. Top-1 (↑) 77.3 77.7
NYU Depth RMSE (↓) 0.642 0.350 0.307
Wall (WS; VF_q) Success Rate (↑) 0.55 0.71
Maze (VF_q) Success Rate (↑) 0.54 0.63

Dense representation ablations reveal:

  • Weighted context loss and deep self-supervision are essential for jointly optimizing local and global visual tasks.
  • Multi-modal tokenization and dataset scaling further improve quantitative performance.
  • For planning, a quasi-metric value function (VF_quasi) delivers the highest success rates, especially notable in maze and wall navigation settings (Destrade et al., 28 Dec 2025, Mur-Labadia et al., 15 Mar 2026).

5. Planning and Control via Latent Model Predictive Control (MPC)

V-JEPA 2.1 deploys latent MPC using Model Predictive Path Integral (MPPI) control. The algorithm samples trajectories by rolling out action sequences in latent space, scores them using the learned embedding-space quasi-distance to the goal, and updates the action sequence via importance weighting:

  1. Initialize mean action sequence μ\mu.
  2. Sample MM candidate sequences via ϵN(0,Σ)\epsilon \sim \mathcal{N}(0, \Sigma).
  3. Predict latent rollouts using PϕP_\phi.
  4. Compute cost as dψ(z,zgoal)d_\psi(z, z_{\text{goal}}) at each rollout.
  5. Update μ\mu by weighted averaging.
  6. Execute the first action, shift sequence, and repeat.

Standard hyperparameters include M=2000M=2000, Σ=12I\Sigma=12I, λtemp=0.005\lambda_{\text{temp}}=0.005, and horizon H=96H=96 (varies by environment).

6. Scaling Strategies and Multi-Modal Learning

  • Model: ViT-L (300M), ViT-g (1B), ViT-G (2B) parameter scales.
  • Data: VisionMix163M (142M images, 19M video clips with rebalanced sampling).
  • Training: Image and video batches are processed jointly using the multi-modal tokenizer; mixed resolution and extended training phases improve performance on depth and semantics.
  • Tokenization: Efficient modality-specific convolutions with unified positional encoding allow seamless transfer and training across images and videos.

Empirical effects of scaling indicate monotonic improvements in benchmarks such as semantic segmentation (ADE20K mIoU +25 points) and depth estimation (NYUv2 RMSE halved), with global classification preserved.

7. Significance, Limitations, and Future Directions

V-JEPA 2.1 establishes a unified, scalable framework for dense visual representation learning and value-informed model-based planning. Key empirical findings include:

  • Quasi-metric value shaping and deep self-supervision are essential for simultaneously achieving global scene understanding and robust per-patch semantics.
  • Embedding distance-matching, particularly with learnable metrics, directly translates to improved planning and control in high-dimensional spaces.
  • Jointly optimizing prediction and value objectives may degrade value geometry; separate training regimes are typically superior for planning-centric applications.
  • Scaling data, model size, and resolution yields consistent, incremental benefits across modalities and tasks.

Remaining limitations include possible trade-offs between dense token learning and global representation, and the interaction of loss-weighting schedules with convergence and stability.

These methods provide plug-in extensions for JEPA-style models that can be adopted in both vision and reinforcement learning domains, supporting reproduction and extension in new domains with minimal modification (Destrade et al., 28 Dec 2025, Mur-Labadia et al., 15 Mar 2026).

Definition Search Book Streamline Icon: https://streamlinehq.com
References (2)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to V-JEPA 2.1.