- The paper introduces APT, a two-stage methodology that decouples visuomotor priors from language alignment to improve instruction generalization.
- It leverages Bayesian factorization and gated language token fusion to mitigate dataset imbalances and overcome vision-only shortcut learning.
- Experimental results show up to 62% success in challenging OOD tasks, demonstrating robust improvements in both simulated and real-world robotic manipulation.
Action Expert Pretraining for Improved Instruction Generalization in Vision-Language-Action Policies
Introduction and Motivation
Recent advances in Vision-Language-Action (VLA) models have demonstrated that robotic manipulation policies can benefit from integrating pretrained Vision-LLMs (VLMs) with generative action experts to translate multimodal instructions into executable trajectories. However, these models exhibit persistent deficiencies in generalization to out-of-distribution (OOD) language instructionsโespecially when language prompts deviate from those seen during training or compose novel demands. This limitation arises from a structural modality imbalance in VLA datasets, where visual and action diversity far outpace language variation, driving continuous-action policies to over-exploit visual shortcuts and ignore language context, ultimately corrupting VLM representations when action experts are trained from random initialization.
The presented work, "APT: Action Expert Pretraining Improves Instruction Generalization of Vision-Language-Action Policies" (2606.12366), directly targets this generalization problem by introducing Action expert PreTraining (APT)โa two-stage training procedure, grounded in a Bayesian factorization of the VLA policy, which decouples the learning of visuomotor priors from language-conditioned task alignment. This methodology enables robust transfer and composition of language instructions across both simulated and real-world manipulation settings.
Figure 1: APT comprises a two-stage protocol in which a vision-action prior is first learned from visual tokens, followed by language-conditioned likelihood alignment via token injection from a frozen VLM backbone.
Bayesian Decomposition and Training Protocol
The core technical insight is the Bayesian decomposition of the policy ฯ(aโฃv,โ) into a language-agnostic Vision-Action prior ฯp(aโฃv) and a VLA likelihood L(โโฃv,a), i.e.:
ฯ(aโฃv,โ)โฯp(aโฃv)โ
L(โโฃv,a)
Here, a is the action token, v is the visual input, and โ the language prompt. Existing VLA policies, trained end-to-end on triplets (a,v,โ), face an intrinsic incentive to disregard โ due to visual dominance in the data, leading to degenerate minima where actions are predicted from vision alone. Information-theoretic analysis demonstrates that, under typical dataset imbalance, the conditional mutual information I(a;โโฃv) is negligible, so standard gradient descent is biased toward vision-only solutions.
APT circumvents this by isolating action learning from language during Stage 1: the action expert (a diffusion or flow-based model) is pretrained on balanced vision-action pairs with the language signal masked, ensuring learned priors are not tainted by overfit to visual context alone. Only in Stage 2 are language tokens injectedโvia a gated fusion mechanismโenabling the network to align the action manifold with instructions without erasing previously acquired visuomotor regularities.
Architectural Mechanisms
APT introduces a specialized action expert architecture featuring:
- Multimodal Self-Attention: Action, vision, and (eventually) language tokens are concatenated and processed with block-wise causal attention.
- Layer-wise VLM Feature Gated Fusion: At each action expert layer, intermediate features from the VLM are injected, gated by learnable scalars, providing a spectrum of abstraction from localized scene details to global semantics.
- Two-Stage Masked Attention: During Stage 1, only ฯp(aโฃv)0 layers attend to vision/action, with language masked. In Stage 2, the full ฯp(aโฃv)1 layers (including new cross-modal attention) are unlocked, reasoning jointly over all tokens.
This mechanism is agnostic to the specific VLA architecture, as demonstrated by successful applications to both ฯp(aโฃv)2-style (interleaved attention) and GR00T-style (final-layer cross-attention) policies. Empirical evidence confirms that the approach generalizes to diverse tokens and embodiment representations.
Figure 2: The two-stage pretraining scheme can be applied to various VLA-hybrid architectures, showing consistent gains in OOD instruction generalization.
Experimental Results
Simulation Benchmarks
APT is evaluated on challenging simulation benchmarks such as LIBERO-PRO and compositional pick-and-place tasks with multiple OOD axesโunseen objects, containers, environmental backgrounds, and paraphrased or novel task instructions. Baselines include OpenVLA, ฯp(aโฃv)3, ฯp(aโฃv)4 (with gradient stop on VLM), LangForce (MI-based enforcement), and modular programmatic controllers like CaP-X.
Key findings:
- Baseline joint training collapses to 0% success on OOD instruction tasks; both ฯp(aโฃv)5 (with VL data co-training and knowledge insulation) and LangForce show trade-offs between visuomotor robustness and language grounding.
- APT consistently surpasses both, achieving up to 62% success rates on LIBERO-PRO OOD tasks, even in the most challenging Goal-Task settings.
- Enabling joint VLM finetuning post-pretraining provides further gains, indicating that, with a well-initialized action prior, allowing gradients to the VLM is not detrimental.
Ablations
Ablative studies demonstrate:
- Two-stage pretraining is effective with or without VL knowledge insulation; the initialization effect dominates.
- Gated fusion for language token injection preserves VA priors better than naive token insertion.
- The benefits of APT persist even with limited pretraining, but are amplified with large-scale diverse demonstrations.
Real-World Transfer
APT is deployed on a real-robot platform and evaluated on single-task generalization (pick-place and cluttered manipulation) and compositional instruction following (task coaching and task chaining). Comparative analysis against ฯp(aโฃv)6 highlights:
- Marginal improvement for seen objects (SO), large performance gaps for UO, UOUC, UOUCUE, and long-horizon compositional tasks, with success rates 50โ100% higher in OOD settings.
- Robustness to distractors and accurate multi-step execution remain markedly better for APT, especially when evaluating instruction chaining, where baseline policies typically fail to parse and correctly sequence subtasks.

Figure 3: APT achieves strong generalization in both atomic and compositional real-world manipulation tasks, outperforming baselines across OOD settings.
Analysis and Discussion
APT's pretraining regime directly resolves the visual shortcut tendency present in continuous VLA models. By ensuring that the action expert first models the true, balanced distribution over visuomotor behaviors, subsequent language alignment can occur without corrupting either the prior or the VLM backbone, thereby preserving compositionality and instruction fidelity. The approach is fundamentally architectural and methodological; it does not depend on additional VL data or handcrafted auxiliary loss functions.
On the theoretical front, the work justifies the two-stage conditioning via precise information-theoretic arguments, showing that shortcut optima are intrinsic to the standard VLA training objective in the presence of statistical imbalance, and that APT reintroduces a training signal that incentivizes true language grounding.
Limitations and Future Work
The current formulation does not explicitly model persistent long-horizon memory, so transition errors (e.g., continued pushing after grasping, missed sub-task boundaries in compositions) occur primarily when sub-task termination signals are ambiguous. The focus is restricted to manipulation tasks; generalization to mobile manipulation or tasks demanding global scene understanding and extended planning is an area for future extension. Moreover, improvements in hierarchical or memory-augmented architectures could further boost multi-step task compositionality.
Conclusion
This paper demonstrates that action expert pretraining, structured via Bayesian policy factorization, is an effective and architecture-agnostic approach to significantly enhance OOD instruction generalization in continuous VLA policies. This is evidenced by robust gains in both simulated and real-world settings, strong architectural ablation, and resilience to dataset imbalance and OOD shifts. These results indicate a substantial step toward more reliable, compositional robotic policies, and motivate exploration of advanced memory mechanisms and broader task coverage in VLA frameworks.