TrackVLA: Embodied Visual Tracking in the Wild

TL;DR

TrackVLA introduces a unified VLA model trained on 1.7 million samples, outperforming SOTA in embodied visual tracking and recognition.

cs.RO 🔴 Advanced 2025-05-29 42 views
Shaoan Wang Jiazhao Zhang Minghan Li Jiahang Liu Anqi Li Kui Wu Fangwei Zhong Junzhi Yu Zhizheng Zhang He Wang
Embodied AI Visual Tracking Multimodal Learning Diffusion Model Zero-shot Generalization

Key Findings

Methodology

TrackVLA employs a shared large language model (e.g., Vicuna-7B) as backbone, integrating a vision encoder (EVA-CLIP) for multi-scale visual feature extraction, and a cross-modality projector to align visual and language representations. The recognition task uses a language modeling head for textual output, while trajectory planning utilizes an anchor-based diffusion transformer to generate waypoint paths. During training, 855K recognition and 855K tracking samples are jointly optimized with combined text prediction and trajectory regression objectives, fostering tight integration. The model demonstrates robust zero-shot generalization across synthetic and real environments, validated on benchmarks like Gym-UnrealCV and EVT-Bench.

Key Results

  • On Gym-UnrealCV, TrackVLA achieves 100% success rate in zero-shot tracking, surpassing traditional detection+planning methods (e.g., DiMP, SARL) by over 12%. In EVT-Bench, it outperforms baselines across three tasks, with success rates of 81%, 74%, and 50%, respectively, and significantly reduced tracking errors.
  • In recognition tasks, accuracy reaches 80.7%, with real-time inference at 10 FPS, vastly outperforming GPT-4o-based methods in speed. Cross-domain tests show strong adaptability to unseen environments and object types.
  • Ablation studies reveal that multi-scale visual feature fusion and anchor-based diffusion are critical for performance gains, with each component contributing substantially to robustness and continuity of tracking.

Significance

This work advances Embodied AI by integrating recognition and trajectory planning into a single end-to-end framework, overcoming error propagation issues of modular approaches. The model’s zero-shot generalization and robustness in dynamic, occluded scenes open new avenues for autonomous robots in real-world applications such as navigation, surveillance, and human-robot interaction, addressing long-standing challenges of perception and control synergy.

Technical Contribution

The paper introduces a novel VLA architecture leveraging shared large language models, multi-scale visual features, and anchor-based diffusion for path generation. It constructs a large-scale, diverse dataset of 1.7 million samples, enabling comprehensive training. The approach achieves state-of-the-art performance in synthetic and real-world scenarios, demonstrating significant improvements over existing methods in robustness, generalization, and inference speed.

Novelty

This is the first work to unify target recognition and trajectory planning within a single VLA framework trained on a massive, diverse dataset. It innovatively combines diffusion-based path generation with multimodal perception, providing a seamless, end-to-end solution that surpasses prior modular or separate methods, especially in complex, dynamic environments.

Limitations

  • The model struggles under extreme occlusion or rapid target motion, indicating room for improvement in dynamic scene understanding. The reliance on simulated training data may limit real-world transferability without domain adaptation.
  • While inference runs at 10 FPS, deployment in large-scale, real-time scenarios requires further optimization. The computational cost of large models remains a challenge for resource-constrained platforms.
  • Future work should focus on enhancing robustness to occlusion, reducing model size, and incorporating online learning for continual adaptation.

Future Work

Future directions include developing adaptive perception modules for better occlusion handling, integrating online learning to improve real-time adaptation, and optimizing model architectures for deployment on edge devices. Expanding training datasets with real-world data and domain adaptation techniques will further enhance robustness, enabling broader application in autonomous robotics, surveillance, and assistive systems.

AI Executive Summary

In the realm of autonomous robotics and embodied AI, the ability to continuously track and recognize targets in complex, dynamic environments remains a formidable challenge. Traditional approaches often treat recognition and path planning as separate modules, leading to error accumulation and limited generalization. Recognizing these limitations, Wang et al. introduce TrackVLA, a pioneering vision-language-action model that unifies recognition and trajectory planning within a single, end-to-end framework.

The core innovation lies in leveraging a shared large language model backbone, such as Vicuna-7B, integrated with a vision encoder (EVA-CLIP) that extracts multi-scale visual features. These features are projected into the language model space via a cross-modality projector, enabling the model to perform both recognition and planning tasks seamlessly. For recognition, the model generates textual descriptions of targets, while for trajectory planning, it employs an anchor-based diffusion transformer that produces continuous waypoint paths. This design ensures tight coupling between perception and action, significantly reducing error propagation.

To train such a comprehensive system, the authors assembled a massive dataset of 1.7 million samples, including 855K embodied visual tracking samples from a custom simulator and recognition samples from open-world datasets. The model was trained with joint objectives—text prediction and trajectory regression—resulting in robust performance across synthetic benchmarks like Gym-UnrealCV and real-world scenarios in EVT-Bench. Experimental results show that TrackVLA achieves 100% success in zero-shot tracking, outperforming existing methods by large margins, and maintains real-time inference at 10 FPS.

This research marks a significant step forward in embodied AI, enabling robots to operate more autonomously and reliably in unpredictable environments. Its ability to generalize across diverse scenarios opens new possibilities for applications in navigation, surveillance, and human-robot interaction. Despite current limitations under extreme occlusion and domain gaps, the proposed framework sets a new standard for integrated perception-action models, paving the way for future innovations in intelligent autonomous systems.

Deep Dive

Plain Language Accessible to non-experts

想象你在厨房里做饭,你需要找到特定的食材,比如一个红苹果。传统的方法就像用放大镜逐个检查每个水果,费时又容易迷失方向。而新方法像是你戴上了一个智能眼镜,不仅能同时看到所有水果,还能听你说的话,帮你快速找到苹果。它学习了很多不同厨房的场景,知道苹果藏在哪里,不管藏得多深或周围有多少其他水果。这就像你有一个聪明的助手,能帮你在复杂的厨房里快速找到目标,还能规划出拿苹果的最佳路线。这样,你做饭就变得更快、更准,也更轻松。

ELI14 Explained like you're 14

想象你在学校操场玩捉迷藏,你的任务是找到穿黑色衣服的人。以前的方法就像用眼睛慢慢找,可能会被其他穿得像的人迷惑,或者藏得太好找不到。而现在,有个超级聪明的机器人助手,它不仅能看得很清楚,还能听你的指令,比如“追踪那个穿黑衣服的人”。这个助手学会了很多场景,能在嘈杂或人多的地方也能准确找到目标。它还能自己规划追踪路线,确保不会迷路或撞到东西。这个新系统让追踪变得更快、更准,也更智能,就像你有了一个贴心又聪明的伙伴。

Abstract

Embodied visual tracking is a fundamental skill in Embodied AI, enabling an agent to follow a specific target in dynamic environments using only egocentric vision. This task is inherently challenging as it requires both accurate target recognition and effective trajectory planning under conditions of severe occlusion and high scene dynamics. Existing approaches typically address this challenge through a modular separation of recognition and planning. In this work, we propose TrackVLA, a Vision-Language-Action (VLA) model that learns the synergy between object recognition and trajectory planning. Leveraging a shared LLM backbone, we employ a language modeling head for recognition and an anchor-based diffusion model for trajectory planning. To train TrackVLA, we construct an Embodied Visual Tracking Benchmark (EVT-Bench) and collect diverse difficulty levels of recognition samples, resulting in a dataset of 1.7 million samples. Through extensive experiments in both synthetic and real-world environments, TrackVLA demonstrates SOTA performance and strong generalizability. It significantly outperforms existing methods on public benchmarks in a zero-shot manner while remaining robust to high dynamics and occlusion in real-world scenarios at 10 FPS inference speed. Our project page is: https://pku-epic.github.io/TrackVLA-web.

cs.RO cs.CV