By doing real-world RL with language intervention, a VLA can learn a zero-success-rate task in under an hour.
Your VLA is stuck on the canonical prompt. Wiggling its joints won't help. So we hand the mic to the human already standing there: they watch the rollout, and when the robot goes sideways, they update the prompt mid-rollout. The VLA keeps generating actions; only its language input changes. Then we fold those successes back into PPO — but reward is still scored against the original task.
Two knobs make it practical: mixed backprop (so the policy doesn't become dependent on the human's phrasing), and adaptive intervention (allow interventions in proportion to \(1 - \hat s(g)\) — low-success tasks get more help; reliable ones get left alone).
By doing real-world RL with language intervention, a VLA can learn a zero-success-rate task in under an hour.
| Task | SFT | PPO | DAgger | PPO + IDE (ours) |
|---|---|---|---|---|
| put the tape in the bowl | 20.0 | 30.0 (+10) | 30.0 (+10) | 75.0 (+55) |
| put the tape in front of the camera | 0.0 | 15.0 (+15) | 35.0 (+35) | 60.0 (+60) |
| put the donut in the bowl | 5.0 | 20.0 (+15) | 10.0 (+10) | 55.0 (+50) |
| open the top drawer and put the bowl inside | 0.0 | 0.0 (+0) | 10.0 (+10) | 35.0 (+35) |
| Average | 6.3 | 16.3 (+10) | 22.5 (+16.2) | 56.3 (+50.0) |
Practical real-world RL under a tight data budget.
Reinforcement learning is a promising framework for improving vision-language-action (VLA) models through interaction, but it often struggles when the initial policy repeatedly fails in the same way. Our key observation is that these models already offer a simple way for humans to change what the policy attempts — through language. In real-world robot training, humans often need to stay nearby to monitor rollouts, reset environments, and check progress; while watching, a human can redirect exploration by simply revising the instruction, without providing low-level actions or directly controlling the robot. We introduce Instruction-Driven Exploration (IDE), an interactive post-training framework that uses human prompt updates to help VLAs collect more useful experience. On real-world physical robots, IDE significantly improves sample efficiency over standard RL, making robot learning more practical under limited data. We further show that interactive post-training makes VLAs more responsive to prompt updates at test time, enabling users to guide robot behavior through natural language during execution.