VLA-Corrector: Lightweight Detect-and-Correct Inference for Adaptive Action Horizon
arXiv · HuggingFace · ▲9
Abstract (verbatim)
Vision-Language-Action (VLA) foundation models have recently achieved strong progress in embodied intelligence. To reduce policy-call frequency while preserving temporal coherence, most generative policies adopt an action chunk mechanism, executing multiple future actions in an open-loopThe controller commits to actions planned from the current observation and executes them without using later feedback to correct the remaining actions. manner under a fixed action horizonThe number of consecutive future actions planned and executed from one policy call. A larger h executes a longer chunk with fewer model calls, but stays open-loop longer and can accumulate errors; a smaller h replans more often, improving reactivity at higher inference cost.. However, this "predict-then-blindly-execute" paradigm sacrifices closed-loopThe controller keeps observing during execution, compares what happened with what was expected, and updates future actions from that feedback. reactivity: in contact-rich physical interactions, even small local perturbations can rapidly amplify within the open-loopThe controller commits to actions planned from the current observation and executes them without using later feedback to correct the remaining actions. blind spot, leading to compounding errors and ultimately task failure. To address this limitation, we propose VLA-Corrector, a lightweight corrective inference framework for action-chunked VLA policies. Without modifying the backbone policy weights, VLA-Corrector introduces a lightweight Latent-space Vision Monitor (LVM) that continuously compares predicted and actual visual feature evolution, enabling online detection of visual dynamics deviations. Once persistent deviation is detected, the system triggers a truncation event, discards the remaining stale actions, and invokes corrective replanning via Online Gradient GuidanceOGG. During replanning, it turns the gap between expected and observed visual evolution into a corrective direction, nudging the generated action sequence back toward a recoverable trajectory without retraining the policy. (OGGOnline Gradient Guidance. A correction signal added during replanning: when execution has drifted, the model uses visual deviation to guide the next generated actions instead of blindly sampling a new chunk.). The detect-and-correct mechanism of VLA-Corrector naturally induces an event-triggered adaptive action horizonThe number of consecutive future actions planned and executed from one policy call. A larger h executes a longer chunk with fewer model calls, but stays open-loop longer and can accumulate errors; a smaller h replans more often, improving reactivity at higher inference cost.: it preserves long-horizon execution when the current chunk remains reliable, and invokes short-horizon corrective replanning when execution begins to drift. In doing so, VLA-Corrector mitigates the trade-off imposed by static horizons between execution robustness and policy-call frequency. It can be integrated into different VLA models without further retraining the VLA backbone, interrupting compounding errors while preserving much of the efficiency benefit of action chunking and substantially improving robustness in long-horizon, contact-rich robotic manipulation tasks.
Background
Background Analysis
1. Technical Context
Vision-Language-Action (VLA) models represent a cutting-edge approach in robotics, aiming to unify perception, language understanding, and action generation in a single framework. These technologies are critical for applications requiring flexibility and complex interaction, such as home service robots (e.g., organizing desks, opening doors), industrial manipulation (e.g., assembly, lifting), or medical assistance tasks. The core challenge is to balance action smoothness with robustness to dynamic uncertainties (e.g., object slipping, collisions, or pose shifts). However, traditional methods face a key trade-off: single-step inference latency is too high for real-time feedback control, while fixed-length action chunks improve efficiency but create an "open-loopThe controller commits to actions planned from the current observation and executes them without using later feedback to correct the remaining actions. blind spot"—unobservable execution phases where small perturbations amplify into task failures.
2. Previous Limitations
The fundamental flaw in existing approaches lies in the design of static action chunks. Longer chunks reduce policy invocation frequency (boosting efficiency) but widen the blind spot, causing minor disturbances to cascade into failures. Shorter chunks, while responsive, are inefficient due to frequent policy calls. Additionally, static chunks cannot adapt to dynamic task demands (e.g., simple tasks benefit from long chunks to save computation, while complex tasks require short chunks for robustness). Prior work attempted to mitigate this trade-off by tuning chunk lengths, but failed to address the core questions: when to terminate outdated actions and how to effectively correct trajectories.
3. Proposed Solution
VLA-Corrector introduces a lightweight inference framework to solve these problems without modifying the underlying model weights, using two key mechanisms:
- Latent-space Vision Monitor (LVM): Continuously compares predicted and actual visual feature evolution during open-loopThe controller commits to actions planned from the current observation and executes them without using later feedback to correct the remaining actions. execution. If persistent deviation is detected, it triggers an immediate termination of remaining actions (event-driven truncation).
- Online Gradient GuidanceOGG. During replanning, it turns the gap between expected and observed visual evolution into a corrective direction, nudging the generated action sequence back toward a recoverable trajectory without retraining the policy. (OGGOnline Gradient Guidance. A correction signal added during replanning: when execution has drifted, the model uses visual deviation to guide the next generated actions instead of blindly sampling a new chunk.): After truncation, it uses the discrepancy between predictions and observations to generate corrective gradients, guiding new action generation to actively steer the robot back to the target trajectory, rather than relying on random replanning.
This "detect-and-correct" mechanism transforms fixed action chunks into adaptive ones, retaining the efficiency of long chunks while gaining the responsiveness of short ones.
4. Differentiating Angle
Compared to prior work, VLA-Corrector’s innovation lies in:
- Dynamic Adaptation: Shifting from "predefined fixed chunks" to "runtime adaptive adjustments," deciding whether to continue or replan based on execution reliability.
- Correction-Oriented Design: Not only detecting deviations but actively correcting trajectories via gradient guidance, solving the problem of "failures after truncation" in traditional methods.
- Non-Intrusive Integration: No retraining of the underlying VLA model is required, allowing seamless integration into existing frameworks.
This approach balances efficiency and robustness, particularly for long-horizon, contact-rich robotic tasks (e.g., assembly), significantly improving task success rates.













