Unified Visuomotor Targets:
Supervising VLAs Beyond Physical Actions

1University of California, Irvine
UVT Teaser

UVT unifies two complementary supervision signals — discrete visual dynamics from a pretrained latent action model and continuous robot actions from demonstrations — into a single latent prediction target. By training VLAs to predict this unified target instead of raw joint commands, we accelerate convergence and improve policy performance, all without changing the backbone architecture or collecting additional data.

Abstract

Vision-Language-Action (VLA) models have become a practical framework for robot manipulation, leveraging pretrained vision-language models (VLMs) as multimodal backbones that map image observations and language instructions to robot actions. While recent work has improved action tokenization formats, the question of what information the prediction target should encode has received comparatively little attention. Joint positions and Cartesian poses are low-level, embodiment-specific signals that encode limited information about task context, creating a mismatch with the rich structure VLMs extract from visual and language inputs.

We propose UVT (Unified Visuomotor Target), a structured prediction target for VLA fine-tuning that integrates robot actions with discrete dynamics codes from a pretrained Latent Action Model (LAM). For each training sample, we construct a compact latent ut ∈ ℜ32 that jointly encodes the action chunk and discrete dynamics code via a lightweight multimodal VAE. During VLA fine-tuning, the policy predicts ut instead of raw actions, and a trainable decoder maps the predicted latent to executable action chunks. Because ut encodes both motor control and visual transition dynamics, it is more consistent with the task structure that VLMs already extract from image and language inputs.

UVT requires no architectural changes, no additional data, and no modification to the training schedule. We evaluate on VLA-Adapter (regression head) and π0.5 (diffusion/flow head) across LIBERO, LIBERO-Plus, and real bimanual manipulation tasks. UVT consistently improves convergence speed, final task performance, and policy robustness, with particularly strong gains under limited training budgets.

Method

Unified Visuomotor Target Construction

UVT Architecture

Unified Visuomotor Target ut Training Architecture. A pretrained latent action model (LAM) extracts discrete dynamics codes zt from image pairs, while ground-truth robot actions at ∈ ℜk×d provide continuous supervision. Two trainable encoders map at and zt to Gaussian posteriors, which are fused via a weighted Product-of-Experts to produce the unified visuomotor target ut ∈ ℜ32. The target is decoded to reconstruct both robot actions and discrete dynamics codes, while a KL divergence loss regularizes ut toward a standard normal prior.

UVT for VLA Imitation Learning

After training the multimodal VAE, we precompute ut for all training samples. During VLA fine-tuning, the policy predicts ût from multimodal input and is supervised with a combined objective:

LVLA = || ût - ut ||2 + γ || ât - at ||1

This loss anchors the policy's internal representation to the unified visuomotor target space while ensuring decoded outputs remain consistent with executable joint commands. The modification changes only the prediction target and loss — the backbone VLA architecture remains unchanged, making UVT compatible with both regression-style and diffusion-based VLA policies.

Experiments

Real-World Bimanual Manipulation

Real Robot Setup

Real-world evaluation platform. Two robot arms perform three tabletop tasks: Lift Pot, Close Marker, and Plate Handover, each testing different aspects of dual-arm coordination. For each task, we collect 30 demonstrations, fine-tune for 10 GPU hours, and run 50 evaluation trials.


Real-world experiment video overview:


Task Demonstrations

Lift Pot Task
Close Marker Task
Plate Handover Task

Task Method # Succ # Half Rate
Lift Pot VLA-Adapter 1938.0%
UVT (Ours) 2754.0%
Close Marker VLA-Adapter 000%
UVT (Ours) 02626%
Plate Handover VLA-Adapter 7418%
UVT (Ours) 121640%

UVT yields a 2.2x improvement on Plate Handover and enables marker insertion on Close Marker where the baseline achieves 0% success.


Simulation Benchmarks

LIBERO Benchmark Suites

LIBERO benchmark suites. The four suites — Object, Spatial, Goal, and Long — each include distinct manipulation challenges. LIBERO-Plus provides additional environmental perturbations to test model robustness.


Training Efficiency

We compare success rates at 10k and 100k training steps across LIBERO and LIBERO-Plus. UVT achieves significantly faster performance gains under limited computation, especially on the more challenging LIBERO-Plus benchmark.

Environment Method Object Spatial Goal Long Avg.
10k100k 10k100k 10k100k 10k100k 10k100k
LIBERO VLA-Adapter 93.497.6 78.896.2 90.495.6 56.289.0 79.794.6
UVT (Ours) 94.099.6 95.098.6 95.097.2 68.891.2 88.296.7
LIBERO-Plus VLA-Adapter 52.758.3 34.086.8 42.372.4 41.764.3 42.770.5
UVT (Ours) 52.460.4 81.587.2 67.874.7 63.072.1 66.273.6

At 10k steps on LIBERO-Plus Spatial, UVT achieves 81.5% vs. baseline's 34.0% — a +47.5% improvement under identical training budgets.


Benchmark Results (100k Steps)

UVT consistently improves performance over baselines across different VLA architectures without increasing model size, demonstrating compatibility with both regression-style (VLA-Adapter) and diffusion-based (π0.5) policies.

Model Object Spatial Goal Long Avg.
VLA-Adapter 97.696.295.689.094.6
π0.5 97.898.498.090.696.2
UVT (VLA-Adapter) 99.698.697.291.296.7
UVT (π0.5) 99.098.497.892.496.9

LIBERO Simulation Rollouts

Example UVT policy rollouts across LIBERO tasks, each shown alongside its corresponding decoded action trajectory. The policy produces smooth, task-coherent motions while successfully completing diverse manipulation objectives.


Ablation Study

We compare alternative ways of incorporating discrete dynamics codes into VLA training. Simply adding an auxiliary dynamics prediction head provides moderate gains, but fusing both signals into a unified target via UVT yields substantially stronger improvements.

Method @ 10k steps @ 100k steps
VLA-Adapter 78.896.2
w/ Villa-X head 83.296.8
w/ UniVLA head 86.495.8
UVT (Ours) 95.098.6

Ablation on LIBERO-Spatial. Independent heads supervise separate outputs but do not enforce interaction between motor and dynamics representations. UVT encodes both jointly.


Latent Representation Analysis

t-SNE Visualization

t-SNE visualization of unified visuomotor target ut and raw robot action at. Compared to raw robot actions, the unified visuomotor target exhibits more structured and smoothly organized embeddings across LIBERO suites. Even without suite information during training, the latent naturally groups actions from the same suite together, suggesting a more semantically consistent representation of task dynamics.


Decoded u_t Animation

Temporal profiles of decoded and raw action trajectories. Robot actions decoded from sampled ut are noticeably smoother, exhibiting fewer high-frequency fluctuations while preserving the overall motion trend. This suggests that the learned ut captures underlying motion dynamics while filtering out low-level actuator noise.

BibTeX

Coming soon.