Teahose.
SIGN IN
NEW HERE — WHAT TEAHOSE DOES
We read the entire AI & tech firehose — so you don't have to.
PODPodcastsAll-In, No Priors, Acquired…
NEWNewslettersStratechery, Newcomer…
PAPPapersPhysical AI research
PHProduct Huntdaily launches
VCInvestor ScoutSequoia, a16z, Benchmark…
CLAUDE DISTILLS →
7 reads, 30 sec each — free, 6 AM ET.
+ a live graph of the companies, people & themes underneath.
HOME/ARXIV PHYSICAL AI RESEARCH/Learning What to Say to Your VLA…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

Learning What to Say to Your VLA: Mostly Harmless Vision Language Action Model Steering

DATE June 22, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS HYUNDOO JEONG, GOKUL SWAMY, ANDREA V. BAJCSYARXIV 2606.12299
// SUMMARY

1. Key Themes

Language Steering Beats Direct VLA Fine-Tuning — With 5x Less Data

The paper demonstrates that adapting the language interface to a frozen VLA is more data-efficient and generalizes better than fine-tuning the VLA's action policy directly. In a data-scaling study, the language feedback policy (LFP) trained with only 10 successful rollouts per task already matched or exceeded VLA fine-tuning trained with 50 rollouts. As the authors state in Section 5.2: "π_RFT with only 10 rollouts already matches or exceeds π_VLA-SFT trained with 50 rollouts, using one-fifth as much fine-tuning data." Moreover, while VLA fine-tuning plateaus at 50 rollouts, the LFP "continues to improve with additional data, suggesting that adapting the language interface uses limited fine-tuning data more efficiently than directly fine-tuning the VLA" (Section 5.2). This is a critical finding for any company that has to pay for robot data collection — language-level adaptation is a cheaper lever than action-level retraining.

Conformal Prediction Provides Deployable Safety Guarantees for VLA Steering

The paper introduces a conformalized "improvement head" that predicts whether language steering will help or harm, and mathematically guarantees a bounded false-positive rate (i.e., the rate at which the system steers when it shouldn't). In hardware, conformalization dropped the harmful steering rate (FPR) from 61.11% to 2.22% at α=0.1, while barely reducing the true positive rate (100% → 99.63%) (Table 1). The guarantee is stated in Section 4.1: "ℙ(ψ(X) ≥ q̂_α | Y = 0) ≤ α" — meaning the probability of steering when it would harm performance is provably bounded. For deployment, this means you can tune the risk tolerance (α) as a product parameter.

Closed-Loop Language Feedback Enables Real-Time Recovery from Perturbations

The paper shows that updating language instructions during execution (not just once upfront) enables recovery from mid-task disruptions. Figure 7 demonstrates a scenario where a human moves a correctly-placed cube back into the scene mid-task; the base VLA continues executing the original instruction and misplaces the cube, while the LFP "observes the changed state, outputs an updated language action ℓ_t, and steers the frozen VLA to recover from the perturbation" (Section 5.4). Open-loop prompt rewriting (editing the instruction once and holding it fixed) achieves only 71.3% success vs. 75.0% for closed-loop trajectory-level search (Table 2).

The Approach is VLA-Agnostic and Requires No Access to Training Data

The framework operates on "arbitrary frozen pre-trained VLAs, requiring neither access to the original training distribution nor fine-tuning of the underlying model" (Abstract). This is validated on π0.5 (Physical Intelligence's model) fine-tuned on LIBERO (simulation) and DROID (hardware). The LFP itself is a Qwen3-VL-4B model fine-tuned via LoRA, making it lightweight relative to the VLA it steers.


2. Contrarian Perspectives

You Shouldn't Always Steer — Knowing When to Shut Up Matters More Than Knowing What to Say

Most robotics companies assume that if you have a better prompt or instruction, you should always use it. This paper argues the opposite: the most important component is a refusal mechanism that knows when language steering will make things worse. The authors found that "the VLA may not be language steerable for some tasks, so language steering can be ignored or mapped to unintended action distributions that harm performance" (Section 4.1). On the Microwave hardware task, uncalibrated steering actually hurt performance under semantic perturbation, and only conformalization recovered performance above the base VLA (Table 12). The insight: deploying language steering without a calibrated refusal mechanism is dangerous.

Narration Alone Is Insufficient — You Need Interactive Search

A natural assumption would be that simply narrating what the robot is doing (via a VLM) and feeding those narrations back as instructions would improve performance. The paper shows this is wrong: "π_SFT improves training success but degrades deployment success, indicating that narration alone is not enough to elicit the right behavior from the frozen VLA" (Section 5.2, Figure 2). The mapping from language to VLA behavior is too counter-intuitive — you must interactively test language edits through closed-loop rollouts to discover what actually works. This challenges the "just use a VLM to generate subtask descriptions" approach that many companies might default to.

Language Steering Can Be More Sample-Efficient Than Action-Level Adaptation

The conventional wisdom in robotics is that to improve a policy, you fine-tune the policy's actions. This paper shows that operating at the language abstraction level — which is a much lower-dimensional space than continuous actions — yields better generalization with less data. The authors hypothesize this is because "predicting whether improvement is possible is often easier than knowing the precise language sequence that will elicit the improvement" (Section 1), and language operates at a higher level of abstraction that transfers better across visual and semantic perturbations.


3. Companies Identified

Physical Intelligence (π0.5)

  • Description: Developer of the π0.5 vision-language-action model used as the frozen base VLA throughout all experiments.
  • Why relevant: This paper is essentially a post-hoc performance enhancement layer for Physical Intelligence's product. It demonstrates that π0.5's language-to-action mapping is brittle and can be significantly improved (65% improvement in hardware) without touching the model. This has implications for Physical Intelligence's competitive positioning — their model's value can be substantially unlocked by third-party steering layers.
  • Quote: "We use π^VLA := π_0.5 fine-tuned on LIBERO (π_0.5-LIBERO) in simulation, DROID (π_0.5-DROID) in hardware" (Section 5.1).

OpenAI (GPT-5.4)

  • Description: GPT-5.4 is used in "high reasoning mode" to generate trajectory-level semantic perturbations of language sequences during the interactive search phase.
  • Why relevant: OpenAI's frontier LLMs serve as the "teacher" in an offline teacher-student pipeline, generating candidate language rewrites that are then distilled into the lightweight LFP. This positions frontier LLMs as a critical component in the VLA steering stack.
  • Quote: "we leverage the language capabilities of gpt-5.4 with high reasoning mode... to obtain N=16 trajectory-level semantic perturbations" (Appendix 7.1).

Qwen (Qwen3-VL-4B-Instruct)

  • Description: The base VLM used for the language feedback policy (LFP), fine-tuned via LoRA.
  • Why relevant: Demonstrates that a relatively small (4B parameter) open-weights VLM is sufficient to serve as the steering layer, keeping deployment costs manageable. The LFP adds 204ms of latency per replan step (Table 13), which is the primary computational bottleneck.
  • Quote: "Our LFP is initialized as the Qwen3-VL-4B-Instruct model and fine-tuned via LoRA" (Section 5.1).

Molmo (Molmo2-8B)

  • Description: Vision-language model used to narrate robot videos into per-frame language descriptions for the initial proposal distribution.
  • Why relevant: Serves as the "narrator" that converts observation-only demonstrations into structured language sequences, enabling the local search to be tractable rather than searching over arbitrary open-vocabulary utterances.
  • Quote: "we leverage the video understanding capabilities of Molmo2-8B... Molmo2-8B generates task decompositions of each video" (Appendix 7.1).

Franka Emika

  • Description: Robot manipulator used for all hardware experiments.
  • Why relevant: Standard hardware platform; results are demonstrated on a widely-deployed arm, increasing reproducibility relevance.
  • Quote: "Through simulation and hardware experiments with a Franka Emika manipulator" (Section 1).

4. People Identified

Hyun Joe Jeong

  • Lab/Institution: Robotics Institute, Carnegie Mellon University
  • Why notable: Lead author on VLA steering work; this paper represents a practical framework for improving frozen VLA deployment without retraining.
  • Quote: Co-authored the framework for "interactively searching for language sequences that improve closed-loop VLA task performance" (Abstract).

Gokul Swamy

  • Lab/Institution: Robotics Institute, Carnegie Mellon University
  • Why notable: Co-author with prior work on steering VLAs (cited as "SayCan" successor work on steering VLAs via language). Active in the test-time steering and RL for robotics space.
  • Quote: Co-authored the conformal prediction guarantee and the interactive search methodology.

Andrea Bajcsy

  • Lab/Institution: Robotics Institute, Carnegie Mellon University
  • Why notable: Senior author; lab focuses on human-robot interaction, safe robot learning, and interactive policy improvement. The conformal safety guarantee reflects her group's emphasis on deployable safety mechanisms.
  • Quote: The paper's core philosophy of "do no harm" — only steering when reliably beneficial — aligns with her research program on safe interactive robot learning.

5. Operating Insights

Language Steering is a Cheap, Modular Performance Layer — But Latency is the Bottleneck

For a CTO deploying VLAs, this paper outlines a practical architecture: keep your VLA frozen, add a lightweight (4B) language feedback policy on top, and get 24.7-65% performance improvements. The LFP only needs ~50 successful rollouts per task to train (Section 5.1), and it generalizes to novel task compositions and visual/semantic perturbations. However, the LFP adds 204ms of latency per replan step (Table 13), dropping the effective replanning frequency from 14.7 Hz to 3.6 Hz. The authors note that "language generation is the primary computational bottleneck" and suggest "distilling π_RFT, caching repeated language outputs, or updating language asynchronously" (Appendix 7.4) as mitigation strategies. For real-time control loops, this latency must be addressed before deployment.

Conformal Prediction Should Be a Standard Tool in VLA Deployment Stacks

The conformalization approach is model-agnostic and lightweight — it requires only a small calibration set (N_cal=20 per perturbation combination) of held-out OOD episodes where you know whether steering helped or hurt. The resulting guarantee lets you set a product-level risk parameter (α) that controls how often the system will incorrectly steer. This is directly applicable to any company deploying VLAs in safety-sensitive environments. The calibration set can be constructed from your existing evaluation suite. As shown in Table 1, this reduced harmful interventions from 61% to 2.2% on hardware with negligible loss of beneficial interventions.


6. Overlooked Insights

Language Steering Also Makes Robots Faster, Not Just More Reliable

Buried in Table 14 (Appendix 7.4), the paper reports that successful trajectories under the LFP are shorter than under the base VLA across most tasks. On MarkerBlock, trajectories were 23.1% shorter; on Microwave, 14.8% shorter; on ChipsCup, 35.4% shorter. This means language steering doesn't just improve success rates — it discovers more efficient execution strategies. The authors note this "indicates that interactive language search can discover language that both improves reliability and, in many cases, induces more efficient execution" (Appendix 7.4). For throughput-sensitive applications (e.g., warehouse picking), this is a meaningful operational benefit beyond raw success rate.

The VLA's Language Conditioning Is Fundamentally Unreliable — Even for Semantically Identical Instructions

The paper documents that "semantically similar instructions can induce drastically different behaviors" (Abstract) and that the VLA "may ignore language conditioning" entirely for some tasks (Section 3, citing prior work). This is validated empirically: on the Microwave hardware task, the VLA is essentially un-steerable — language interventions consistently hurt performance, and only the conformal refusal mechanism saved it (Table 12). This means that any company building products on top of a VLA's language interface (e.g., natural language task specification for end users) should assume that the language-to-behavior mapping is unreliable and requires a verification/refusal layer. The brittleness is not a bug to be fixed — it's a structural property of current VLA architectures that must be engineered around.