[NeurIPS 2024/2025] DySL-VLA: Making Robots Faster by Knowing When to "Think" and When to "Act"

DySL-VLA: Efficient Vision-Language-Action Model Inference via Dynamic-Static Layer-Skipping for Robot Manipulation

Summary
Problem
Method
Results
Takeaways
Abstract

DySL-VLA is a novel Vision-Language-Action (VLA) inference framework that accelerates robot manipulation tasks by dynamically skipping redundant transformer layers. By categorizing layers into "informative" (static) and "incremental" (dynamic), it achieves a 3.75× speedup over RoboFlamingo and outperforms DeeR-VLA with significantly fewer trainable parameters.

Executive Summary

TL;DR: DySL-VLA is an efficient inference framework that solves the latency bottleneck of Vision-Language-Action models. By recognizing that some robotic actions (like grasping) are harder than others (like moving in empty space), it dynamically skips non-essential neural network layers. It achieves 3.75× speedup while actually improving success rates compared to previous state-of-the-art acceleration methods.

Background Positioning: While VLA models like RT-2 and OpenVLA have high reasoning capabilities, their deployment is hindered by the "heavy" LLM backbones. DySL-VLA shifts the paradigm from uniform computation to Action-Importance-Aware dynamic inference, positioning itself as a critical bridge between high-level reasoning and low-latency physical execution.

The Core Insight: Not All Actions are Equal

In robotics, we often treat every action prediction as an identical computational task. However, the authors observe a fundamental physical intuition:

  1. Informative vs. Incremental Layers: Not every layer in a Transformer contributes equally to the final action. Some layers fundamentally reshape the "understanding" of the scene, while others perform minor refinements.
  2. The "Grasp" vs. "Move" Paradox: In a trajectory, preparatory movements (moving toward a handle) have high error tolerance and continuity. In contrast, "critical moments" (the instant of contact or release) are non-continuous and highly sensitive to precision.

Existing early-exit methods (like DeeR-VLA) often "quit" early for all actions, which risks losing high-level reasoning precisely when it's needed most—during those critical moments.

Methodology: Dynamic-Static Layer Skipping

1. Architectural Strategy

Instead of a blind "early exit," DySL-VLA employs a Dynamic-Static split.

  • Static Layers: These are the "Informative Layers" identified through cosine similarity analysis of activations. They are always executed to preserve the core representation.
  • Dynamic Layers: These are the "incremental" layers. Before these layers, a controller decides whether to execute them or skip to the next static layer using a lightweight Adapter to bridge the gap.

Model Architecture

2. Prior-Post Skipping Guidance

How does the model know when to skip? The authors propose a clever feedback loop:

  • Pre-skip Prediction: It monitors Trajectory Continuity (). If the robot's movements suddenly become jerky or non-linear (indicating a critical phase), the model moves its "skipping-allow point" forward, forcing more layers to stay active.
  • Post-skip Verification: If a continuity break is detected after a skip, the model re-runs the inference with all layers active to ensure the critical action is perfect.

Experimental Performance

On the CALVIN and LIBERO benchmarks, DySL-VLA proves that "less is more":

  • Efficiency: It reduces trainable parameters by 85.7× compared to DeeR-VLA because it only trains 14M parameters in adapters/controllers rather than fine-tuning the whole backbone.
  • Real-world Readiness: On a NVIDIA Jetson Orin, DySL-VLA reached 23.2 Hz, the "Gold Standard" for real-time robot interaction, whereas the base OpenVLA model often chokes at sub-5 Hz.

Experimental Results

The ablation studies (Table 4) confirm that removing either the Pre-skip or Post-skip mechanisms leads to a significant drop in success length, proving that the synergy between physical trajectory monitoring and neural layer skipping is essential.

Critical Insight & Conclusion

Takeaway: DySL-VLA proves that we don't need "smaller" models for robotics; we need "smarter" inference. By tying the computational depth of a Transformer to the physical state of the robot (continuity and action importance), we can achieve the best of both worlds: LLM-level reasoning with the speed of a micro-controller.

Limitations: The current continuity metric relies on a fixed history window (). In extremely high-speed or highly stochastic environments, this window might need to be adaptive. Furthermore, the selection of "Static Layers" is currently done offline; an online adaptive mechanism for selecting informative layers could be the next frontier in VLA efficiency.

Find Similar Papers

Try Our Examples

  • Find recent papers on Action-Aware acceleration for Vision-Language-Action models in robotics beyond layer skipping.
  • Explore the theoretical basis for using cosine similarity of activation distributions to identify "Informative Layers" in Large Language Models.
  • Investigate how trajectory continuity metrics are being used to modulate inference budgets in online RL or imitation learning scenarios.
Contents
[NeurIPS 2024/2025] DySL-VLA: Making Robots Faster by Knowing When to "Think" and When to "Act"
1. Executive Summary
2. The Core Insight: Not All Actions are Equal
3. Methodology: Dynamic-Static Layer Skipping
3.1. 1. Architectural Strategy
3.2. 2. Prior-Post Skipping Guidance
4. Experimental Performance
5. Critical Insight & Conclusion