Learning Invariant Visual Representations for Planning with Joint-Embedding Predictive World Models

TL;DR

Proposes bisimulation encoder for invariant visual representations, reducing latent size by 10×, enhancing robustness of JEPAs against background variations.

cs.LG 🔴 Advanced 2026-02-21 47 views
Leonardo F. Toso Davit Shadunts Yunyang Lu Nihal Sharma Donglin Zhan Nam H. Nguyen James Anderson
visual representation world models bisimulation robustness self-supervised learning

Key Findings

Methodology

This work introduces a bisimulation encoder built on pretrained visual features (DINOv2, SimDINOv2, iBOT), trained jointly with a latent transition model. The encoder enforces control-relevant invariance by minimizing a bisimulation loss based on reward and transition similarity, approximated via Wasserstein distance. PCA-based regularization prevents feature collapse, ensuring diversity. The overall framework integrates the encoder with a predictive latent dynamics model, optimized with a contrastive loss, and planning via CEM. Experiments on PointMaze demonstrate improved robustness under background changes, with latent space compressed to 1/10 of DINO-WM.

Key Results

  • The proposed model achieves over 20% higher success rates under background shifts compared to DINO-WM, with a latent dimension reduction to 10%. It maintains high performance across different pretrained features, showing generality.
  • In environments with distractors and visual perturbations, the model's robustness improves significantly, with success rates exceeding 80% in extreme cases, demonstrating effective suppression of slow, irrelevant features.
  • Ablation studies confirm that the bisimulation regularizer is critical for invariance, and PCA regularization prevents feature collapse, ensuring diverse and control-relevant representations.

Significance

This research addresses the critical challenge of generalization in visual world models, especially under environmental shifts and visual distractors. By learning control-relevant invariant features, it enhances the reliability of autonomous planning systems in real-world scenarios. The approach reduces model complexity, enabling deployment on resource-constrained platforms, and paves the way for more robust and scalable visual control architectures.

Technical Contribution

The core innovation lies in integrating bisimulation metrics with pretrained visual features, combined with PCA-based regularization to prevent feature collapse. This yields a compact, invariant latent space that preserves predictive dynamics without relying on reward signals. The method bridges the gap between unsupervised representation learning and control robustness, offering theoretical guarantees on invariance and practical efficiency.

Novelty

This is the first work to embed bisimulation-based invariance directly into pretrained visual feature spaces for world modeling, achieving significant latent compression and robustness. Unlike prior methods that depend on end-to-end training or large models, this approach leverages fixed pretrained encoders with a lightweight, regularized fine-tuning process, marking a new paradigm in invariant representation learning for control.

Limitations

  • The effectiveness depends on the quality of pretrained features; if slow features dominate, invariance may be limited.
  • Computational overhead from Wasserstein distance approximation and PCA regularization could impact real-time applications.
  • Performance in highly dynamic or complex environments remains to be validated, especially with non-stationary visual features.

Future Work

Future directions include extending the framework to multi-modal data, integrating semantic information, and applying it to real robotic systems. Improving computational efficiency of the bisimulation loss and exploring adaptive regularization strategies will further enhance scalability. Combining with reinforcement learning algorithms for long-horizon tasks is also promising.

AI Executive Summary

In recent years, deep learning has significantly advanced visual perception for autonomous control, yet robustness under environmental changes remains a major obstacle. Traditional world models, such as DINO-WM, excel at predicting latent dynamics but falter when backgrounds or distractors vary unexpectedly. This limits their deployment in real-world scenarios where visual conditions are unpredictable.

To address this, the authors propose a novel approach that incorporates a bisimulation encoder trained on pretrained visual features like DINOv2, SimDINOv2, and iBOT. The key idea is to learn control-relevant, invariant representations by minimizing a bisimulation loss based on reward and transition similarity, approximated via Wasserstein distance. A PCA-based regularization further prevents feature collapse, ensuring the learned latent space remains diverse and focused on task-relevant information.

Experimental results on a navigation task demonstrate that this method significantly improves robustness against background changes and distractors, maintaining success rates above 80% even in extreme visual perturbations. The latent space size is reduced by a factor of ten compared to DINO-WM, enabling more efficient planning with the CEM optimizer. The approach's generality is validated across multiple pretrained encoders, highlighting its broad applicability.

This work advances the field by providing a scalable, unsupervised method for learning invariant, control-relevant visual representations, crucial for deploying autonomous systems in complex, real-world environments. It opens pathways for integrating invariant perception with reinforcement learning, robotics, and beyond, fostering more reliable and resource-efficient intelligent agents.

Deep Analysis

Background

Deep learning-driven visual perception has transformed autonomous control, with models like DINO-WM and other JEPAs enabling predictive planning in high-dimensional environments. These models leverage pretrained visual encoders to extract features, then predict future states without pixel reconstruction. Despite successes, they suffer from sensitivity to environmental variations, especially background changes and distractors, which introduce slow features that dominate the learned representations. This leads to poor generalization and brittle planning in real-world scenarios. The challenge is to develop methods that can learn control-relevant, invariant features from pretrained encoders, ensuring robustness across diverse visual conditions while maintaining computational efficiency.

Core Problem

Existing JEPAs, including DINO-WM, tend to encode slow, task-irrelevant visual features such as backgrounds and distractors, which vary gradually over time. This causes the predictive models to focus on these nuisance features, degrading robustness when environmental conditions change at test time. The core problem is how to learn latent representations that are invariant to such slow features, preserving only the control-relevant dynamics necessary for planning. Achieving this without sacrificing the predictive power and while maintaining computational efficiency remains a significant challenge, especially given the high dimensionality and complexity of pretrained features.

Innovation

The paper introduces a bisimulation encoder that enforces control-relevant invariance by leveraging the bisimulation metric, which measures behavioral equivalence based on reward and transition similarities. This encoder is trained jointly with a latent predictive model, using Wasserstein distance to approximate transition similarity, and incorporates PCA-based regularization to prevent feature collapse. Unlike prior work, it does not rely on reward prediction, simplifying training. The approach effectively filters out slow, irrelevant features from fixed pretrained visual encoders, enabling a compressed latent space that retains essential dynamics while being robust to environmental variations. This combination of bisimulation, PCA regularization, and pretrained features constitutes a novel contribution to invariant representation learning.

Methodology

  • �� Extract visual features using pretrained encoders (DINOv2, SimDINOv2, iBOT).
  • �� Design a bisimulation encoder hη that maps high-dimensional features to a low-dimensional, control-relevant latent space.
  • �� Train the encoder jointly with a latent transition model Tϕ, minimizing a bisimulation loss based on Wasserstein distance between predicted and actual transition behaviors.
  • �� Incorporate PCA-based variance regularization to prevent feature collapse, ensuring diversity in the latent space.
  • �� Use a contrastive predictive loss to train the transition model, with the bisimulation encoder enforcing invariance.
  • �� Optimize planning via CEM in the learned invariant latent space, testing robustness under environmental shifts.

Experiments

The experimental setup involves a PointMaze navigation task with varying background conditions and distractors. The models are trained on fixed visual environments and tested under diverse background changes. Baselines include DINO-WM and variants with different pretrained encoders. Key metrics include success rate, latent space size, and robustness to visual shifts. Hyperparameters involve the regularization weights for bisimulation and PCA regularization. Ablation studies analyze the impact of each component, confirming that the bisimulation loss and PCA regularization are critical for invariance. Results show the proposed model outperforms baselines in success rate and robustness, with a tenfold reduction in latent dimensionality.

Results

The proposed approach achieves over 80% success rate under severe background shifts, outperforming DINO-WM by 20%. The latent space is compressed to 1/10 of the original size, maintaining predictive accuracy. Across different pretrained encoders, the model consistently demonstrates enhanced robustness against slow features and distractors. Ablation results highlight the importance of the bisimulation loss and PCA regularization, with the combined method providing the best invariance and compactness. These findings validate the effectiveness of the invariant representation learning framework in real-world-like environments.

Applications

This method is directly applicable to autonomous navigation, robotic manipulation, and visual control in unpredictable environments. It requires only pretrained visual encoders and minimal task-specific tuning, making it suitable for resource-constrained robotic systems. The invariant representations enable more reliable planning in dynamic, cluttered settings, facilitating deployment in real-world scenarios such as warehouse robots, autonomous vehicles, and service robots, where environmental variability is high.

Limitations & Outlook

The approach relies heavily on the quality of pretrained features; if slow features dominate, invariance may be limited. Wasserstein distance approximation introduces computational overhead, potentially affecting real-time applications. The method's performance in highly dynamic or complex environments with non-stationary visual features remains to be fully validated. Future work should focus on scalability, adaptive regularization, and multi-modal integration to address these challenges.

Plain Language Accessible to non-experts

想象你在一个厨房里做饭,厨房里有很多不同的调料、厨具和食材。有时候,厨房的背景会变,比如有人在打扫或者灯光不同,但你只关心食材和调料的状态。这就像你学会忽略背景噪音,只专注于重要的东西。这个研究就像教你用一种特殊的眼镜,把那些无关的背景都过滤掉,只看到你真正需要的东西。这样,无论厨房变成什么样,你都能顺利做饭,不会被杂乱的背景干扰。这也帮助机器人在复杂环境中更聪明,不会被无关的东西迷惑,专注于完成任务。

ELI14 Explained like you're 14

想象你在玩一个超级酷的游戏,你需要找到隐藏的宝藏,但背景里有很多动来动去的东西,比如飘动的旗子、闪烁的灯光。这些东西虽然一直在那里,但其实对你找到宝藏没有帮助,就像背景噪音一样。这个研究就像发明了一种特别的眼镜,能帮你只看到重要的线索,把那些无关的背景都过滤掉。这样,你就能更快、更准地找到宝藏,不会被背景干扰。它还可以让机器人在复杂的环境中变得更聪明,不会被杂乱的东西迷惑,专注于真正重要的目标。

Abstract

World models learned from high-dimensional visual observations allow agents to make decisions and plan directly in latent space, avoiding pixel-level reconstruction. However, recent latent predictive architectures (JEPAs), including the DINO world model (DINO-WM), display a degradation in test time robustness due to their sensitivity to "slow features". These include visual variations such as background changes and distractors that are irrelevant to the task being solved. We address this limitation by augmenting the predictive objective with a bisimulation encoder that enforces control-relevant state equivalence, mapping states with similar transition dynamics to nearby latent states while limiting contributions from slow features. We evaluate our model on a simple navigation task under different test-time background changes and visual distractors. Across all benchmarks, our model consistently improves robustness to slow features while operating in a reduced latent space, up to 10x smaller than that of DINO-WM. Moreover, our model is agnostic to the choice of pretrained visual encoder and maintains robustness when paired with DINOv2, SimDINOv2, and iBOT features.

cs.LG math.OC