VISTA: Enhancing Visual Conditioning via Track-Following Preference Optimization in Vision-Language-Action Models

TL;DR

VISTA enhances VLA visual conditioning via track-following preference optimization, improving success rate by 3.15%.

cs.CV 🔴 Advanced 2026-02-05 40 views
Yiye Chen Yanan Jian Xiaoyi Dong Shuxin Cao Jing Wu Patricio Vela Benjamin E. Lundell Dongdong Chen
Vision-Language-Action Preference Optimization Visual Conditioning Robotics Deep Learning

Key Findings

Methodology

VISTA employs a three-stage training process: first, it uses track-following preference optimization in a surrogate task to strengthen visual-action alignment; second, it applies latent-space distillation during supervised fine-tuning to transfer this alignment to instruction-following tasks. The approach constructs preference pairs offline from annotated data, avoiding costly on-policy rollouts. The core component is the Direct Preference Optimization (DPO) algorithm, which aligns action predictions with visual tracks by contrasting preferred and dispreferred action chunks based on visual cues. This method enhances the model’s reliance on visual input without architectural modifications or additional data, leading to improved visual grounding and task performance.

Key Results

  • On the LIBERO benchmark, VISTA improves average success rate by 3.15%, outperforming baseline OpenVLA models. It also extends effectively to continuous action models, achieving a 4% increase in task completion count from 3.87 to 4.02 on CALVIN ABC→D. The experiments demonstrate that visual conditioning, measured via KL-divergence sensitivity, is significantly stronger in successful rollouts, validating the correlation between visual grounding and task success. Ablation studies confirm that cosine similarity-based distillation outperforms L2 loss, further supporting the effectiveness of the training strategy.
  • The preference pairs constructed from track annotations implicitly optimize inverse dynamics understanding, enabling the policy to infer actions aligned with visual motion cues. This results in more reliable and robust action outputs, especially in early steps where visual input heavily influences decisions. The method's simplicity and effectiveness are validated across multiple benchmarks, showing consistent performance gains without adding complexity to the model architecture.
  • Overall, VISTA demonstrates that explicit visual conditioning via preference optimization and latent distillation can substantially improve VLA models’ robustness and generalization, setting a new standard for vision-guided robotic manipulation.

Significance

This research addresses the critical challenge of underutilized visual information in embodied AI systems. By explicitly strengthening visual grounding, VISTA enhances the robustness and reliability of robotic manipulation policies, facilitating more autonomous and adaptable robots. The approach bridges the gap between perceptual understanding and action generation, offering a scalable, data-efficient solution that can be extended to various modalities and tasks. Its success suggests a paradigm shift in training multi-modal models, emphasizing the importance of preference-based supervision and implicit inverse dynamics learning, which can influence future research directions in embodied AI and multi-modal learning.

Technical Contribution

The paper introduces a novel training framework combining track-following preference optimization with latent-space distillation, which significantly enhances visual conditioning in VLA models. It innovates by constructing preference pairs offline from annotated data, avoiding costly online sampling, and leveraging DPO to implicitly optimize inverse dynamics understanding. This approach is architecture-agnostic, applicable to both discrete and continuous action spaces, and achieves state-of-the-art improvements without additional data or complex modifications. The method provides a new avenue for improving visual grounding in multi-modal models, with broad applicability in robotics and embodied AI.

Novelty

This work is the first to utilize offline track-based preference optimization to explicitly enhance visual conditioning in VLA models, circumventing the need for expensive online rollouts or expert annotations. It innovatively combines preference learning with latent-space distillation, enabling effective transfer of visual grounding from surrogate tasks to real instruction-following scenarios. Unlike prior approaches that rely on external knowledge injection or architectural complexity, VISTA’s simplicity and effectiveness mark a significant advancement in training strategies for embodied multi-modal models.

Limitations

  • The effectiveness depends on the quality of the visual tracking model; poor tracking accuracy may limit the benefit of preference optimization.
  • Constructing preference pairs still requires some manual or preprocessed annotation, which could hinder large-scale deployment.
  • In highly complex or unseen environments, the visual conditioning improvements may diminish, necessitating further integration with other perception modules.

Future Work

Future research could explore integrating reinforcement learning to further refine visual-action alignment, develop fully automated preference pair generation methods, and extend the approach to incorporate additional sensory modalities like depth or tactile data. Additionally, scaling the framework to more diverse, real-world scenarios and reducing dependency on tracking quality are promising directions to enhance robustness and applicability.

AI Executive Summary

Robotic manipulation in complex environments has advanced significantly with the advent of vision-language models, yet a persistent challenge remains: effectively utilizing visual information for reliable action prediction. Existing models often underperform in real-world scenarios due to weak visual grounding, which leads to brittle behaviors and low robustness. Traditional solutions involve complex architectures or auxiliary tasks, but these often incur high costs and limited transferability.

In response, this paper introduces VISTA, a novel training framework that explicitly enhances visual conditioning in vision-language-action (VLA) models. The core idea is to leverage track-following preference optimization, where the model learns to align its action predictions with visual trajectories annotated in offline datasets. This is achieved through the Direct Preference Optimization (DPO) algorithm, which constructs preference pairs offline by contrasting actions aligned with visual tracks against misaligned responses. The method implicitly optimizes inverse dynamics understanding, enabling the policy to infer actions more accurately based on visual cues.

Following this, VISTA employs latent-space distillation during supervised fine-tuning, transferring the improved visual grounding to instruction-following tasks without architectural modifications or additional data collection. Extensive experiments on benchmarks like LIBERO and CALVIN demonstrate that VISTA consistently outperforms baseline models, with an average success rate increase of 3.15% and a 4% improvement in task completion count in continuous action settings. The results confirm that stronger visual conditioning correlates with higher task success, validating the approach.

This work has significant implications for embodied AI, providing a scalable, data-efficient method to improve visual reliance in robotic policies. It opens avenues for integrating preference-based supervision into other multi-modal learning tasks, ultimately advancing autonomous systems' robustness and adaptability. Future directions include automating preference pair generation, incorporating additional sensory modalities, and extending to real-world deployment scenarios, aiming for truly intelligent, perceptually grounded robots.

Deep Dive

Abstract

Vision-Language-Action (VLA) models have demonstrated strong performance across a wide range of robotic manipulation tasks. Despite the success, extending large pretrained Vision-Language Models (VLMs) to the action space can induce vision-action misalignment, where action predictions exhibit weak dependence on the current visual state, leading to unreliable action outputs. In this work, we study VLA models through the lens of visual conditioning and empirically show that successful rollouts consistently exhibit stronger visual dependence than failed ones. Motivated by this observation, we propose a training framework that explicitly strengthens visual conditioning in VLA models. Our approach first aligns action prediction with visual input via preference optimization on a track-following surrogate task, and then transfers the enhanced alignment to instruction-following task through latent-space distillation during supervised finetuning. Without introducing architectural modifications or additional data collection, our method improves both visual conditioning and task performance for discrete OpenVLA, and further yields consistent gains when extended to the continuous OpenVLA-OFT setting. Project website: https://vista-vla.github.io/ .

cs.CV cs.AI cs.LG cs.RO