BLUE: Toward Better Language Use in Efficient Vision-Language-Action Models for Autonomous Driving

TL;DR

BLUE method enhances efficiency in vision-language-action models for autonomous driving with a lightweight gating mechanism, achieving an 8.9% success rate improvement.

cs.CV 🟡 Intermediate 2026-06-07 43 views
George Ling Lijin Yang Hao Yang Zhongzhan Huang
autonomous driving vision-language models efficiency improvement lightweight gating deep learning

Key Findings

Methodology

BLUE trains a lightweight gate on frozen vision-language-action model hidden states to decide per frame whether to activate language generation or predict actions directly. This method requires no backbone modification or additional human annotation.

Key Results

  • Achieved 76.2% success rate on Bench2Drive, improving by 8.9% over the baseline, with a 2.54x inference speedup.
  • Driving score of 36 on Longest6 v2, significantly outperforming the baseline.
  • Through 2000 GPU hours of analysis, language generation only helps on 14.5% of routes.

Significance

BLUE significantly enhances the efficiency and performance of vision-language-action models in autonomous driving without increasing computational costs. It demonstrates how dynamic control of language generation can improve model performance without sacrificing efficiency.

Technical Contribution

BLUE implements dynamic control over language generation through a lightweight gating mechanism, avoiding the inefficiency of generating language at every frame in traditional methods, providing new engineering possibilities.

Novelty

BLUE is the first to utilize frozen hidden states to predict the necessity of language generation, reducing computational waste compared to existing methods.

Limitations

  • In complex scenarios, the gating mechanism may not accurately predict the necessity of language generation.
  • Requires separate training of the gating mechanism for different models, increasing deployment complexity.

Future Work

Future research can explore more general gating mechanisms applicable to a wider range of vision-language models and validate their effectiveness in more complex scenarios.

AI Executive Summary

The development of autonomous driving technology requires efficient vision-language-action models. However, existing methods generate language at every frame, leading to computational waste. The BLUE method employs a lightweight gating mechanism, training a gate on frozen hidden states to decide when to generate language, thus improving efficiency.

Experimental results show that BLUE performs excellently on the Bench2Drive and Longest6 v2 benchmarks, significantly improving success rates and inference speed. This indicates that dynamic control of language generation can significantly enhance model performance without increasing computational costs.

While BLUE performs well in many scenarios, there is room for improvement in complex scenarios. Future research can explore more general gating mechanisms and validate their effectiveness in more complex scenarios.

Deep Analysis

Background

Autonomous driving technology has made significant progress in recent years, with vision-language-action models becoming a research hotspot. These models generate natural language to reason about scenes before predicting driving actions. However, existing methods generate language at every frame, leading to computational waste.

Core Problem

Existing vision-language-action models generate language at every frame, leading to computational waste, especially when language generation does not significantly aid driving decisions.

Innovation

The BLUE method uses a lightweight gating mechanism to predict the necessity of language generation using frozen hidden states, reducing unnecessary computation.

Methodology

  • �� Train a lightweight gate on frozen VLA hidden states.
  • �� The gate decides per frame whether to generate language or predict actions directly.
  • �� Requires no backbone modification or additional human annotation.

Experiments

Experiments were conducted on the Bench2Drive and Longest6 v2 benchmarks, using the SimLingo model as a baseline. Evaluation metrics include success rate, driving score, and inference speed.

Results

BLUE achieved a 76.2% success rate on Bench2Drive with a 2.54x inference speedup. On Longest6 v2, it achieved a driving score of 36, significantly outperforming the baseline.

Applications

The BLUE method can be used to improve the efficiency of autonomous driving systems, reducing computational waste, especially in scenarios requiring dynamic language generation.

Limitations & Outlook

In complex scenarios, the gating mechanism may not accurately predict the necessity of language generation. Requires separate training of the gating mechanism for different models, increasing deployment complexity.

Plain Language Accessible to non-experts

Imagine you're cooking in a kitchen. Sometimes you need a recipe to guide you, but other times you're so familiar with the dish that you don't need to look at it. The BLUE method is like a smart assistant that helps you decide when you need the recipe and when you can cook directly. This way, you don't waste time looking at unnecessary recipes and can focus on making delicious dishes.

ELI14 Explained like you're 14

Imagine you're playing a racing game. Sometimes you need a map to navigate, but other times you've memorized the route. The BLUE method is like a smart game assistant that helps you decide when you need the map and when you can drive directly. This way, you don't waste time looking at unnecessary maps and can focus on winning the race!

Glossary

Vision-Language-Action Model

A model combining vision, language, and action prediction, used in tasks like autonomous driving.

Used in autonomous driving to generate natural language for scene reasoning.

Gating Mechanism

A mechanism that controls the flow of signals, deciding whether to activate a function.

Used to decide whether to generate language at each frame.

Frozen Hidden States

Intermediate representation states in a model that do not participate in training.

Used to predict the necessity of language generation.

Bench2Drive

A multi-scenario benchmark platform for autonomous driving.

Used to evaluate the performance of the BLUE method.

Longest6 v2

A benchmark for evaluating long-duration driving quality.

Used to assess the performance of BLUE in long-duration driving.

Open Questions Unanswered questions from this research

  • 1 How to improve the accuracy of the gating mechanism in complex scenarios?
  • 2 How to design more general gating mechanisms applicable to a wider range of vision-language models?

Applications

Immediate Applications

Autonomous Driving Efficiency Improvement

The BLUE method can be directly used to improve the efficiency of autonomous driving systems, reducing computational waste.

Long-term Vision

Intelligent Transportation Systems

Through dynamic language generation control, future intelligent transportation systems can be achieved, improving overall traffic efficiency.

Abstract

We present BLUE, a minimal method for better language use in vision-language-action (VLA) models for autonomous driving (AD). Through extensive analysis, we reveal that language matters on only a small fraction of routes, but on those routes it can greatly improve or degrade performance. Generating language at every frame is therefore inefficient, since most computation is spent on frames that do not benefit from language. We further show that pretrained VLA hidden states potentially already encode whether language will benefit a given frame, even though scene complexity and kinematic features alone struggle to predict this. Based on this finding, BLUE trains a lightweight gate on frozen VLA hidden states to decide per frame whether to activate language generation or predict actions directly, without modifying the backbone or requiring additional human annotation. With just a 0.11M-parameter gate, BLUE sets a new state of the art on both benchmarks, achieving 76.2% success rate on Bench2Drive and 36 driving score on Longest6 v2, while delivering 2.54x inference speedup and 8.9% success rate improvement over the backbone. BLUE provides a practical path toward efficient language-augmented AD, showing that VLA models can retain the benefits of language at a fraction of the cost. Our code, data, logs and checkpoints are fully available on https://github.com/George-Ling3/BLUE.

cs.CV