τ_0-VLA: a Hierarchical Robot Foundation Model with World-Model-Guided Test-Time Computation
A robot that pauses to imagine several possible next moves before committing, instead of always deciding in one shot
τ0-VLA is a two-layer robot AI system that, when facing a hard decision during long chores like cleaning a room, cooking, or making milk tea, can imagine several candidate next steps, predict what the scene would look like after each, score them, and only then commit. It was trained on 40,115 hours of real-world robot data, and in physical robot tests, giving it more 'thinking' computation at test time improved both its next-step prediction accuracy and its actual task success rate. The paper is by Xiaowei Cai, posted on arXiv as 2608.16885.
What they did
- Most prior hierarchical robot AI systems pick the next subtask with a single forward pass, with no way to spend extra effort on hard or high-stakes decisions
- τ0-VLA only triggers extra search when the model is uncertain: it generates multiple candidate subtasks, uses a world model to predict the resulting image for each, scores them with a value model via beam search, then produces a final choice
- The chosen subtask is carried out by a low-level policy using a shared 40-dimensional action space, letting one model control multiple different robot bodies
- Across real-robot tasks such as room cleaning, ingredient prep, stir-fry cooking, milk tea making, laundry collection, and book organizing, more test-time computation led to both higher next-subtask prediction accuracy and higher closed-loop task success
- The improvement held even on out-of-distribution book arrangements never seen in training, showing the approach generalizes beyond its training data

| Method | Clean Room | Prepare Ingredients | Tomato and Egg Stir Fry | Make Milk Tea | Avg. | |||||
|---|---|---|---|---|---|---|---|---|---|---|
| SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | |
| GR00T N1.7 [26] | 0/10 | 59.80% | 1/10 | 68.57% | 0/10 | 24.32% | 0/10 | 28.46% | 2.50% | 45.29% |
| LingBot-VLA [40] | 0/10 | 66.60% | 0/10 | 35.00% | 0/10 | 12.27% | 0/10 | 63.85% | 0.00% | 44.43% |
| π0.5 [2] | 4/10 | 86.20% | 2/10 | 73.93% | 0/10 | 49.77% | 3/10 | 82.31% | 22.50% | 73.05% |
| τ0-VLA | 4/10 | 92.80% | 2/10 | 66.43% | 0/10 | 65.00% | 5/10 | 96.15% | 27.50% | 80.10% |
| τ0-VLA (Hierarchical System, Plan Once) | 5/10 | 94.80% | 4/10 | 82.86% | 4/10 | 81.82% | 5/10 | 91.92% | 45.00% | 87.85% |

| Method | Collect Laundry | Tidy Makeup Table | ||||||
|---|---|---|---|---|---|---|---|---|
| T-shirt | Cotton Pad | Eyelash Curler | Makeup Puff | |||||
| SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | |
| GR00T N1.7 [26] | 4/10 | 76.00% | 10/10 | 87.50% | 8/10 | 77.50% | 7/10 | 52.50% |
| LingBot-VLA [40] | 2/10 | 35.00% | 9/10 | 67.50% | 3/10 | 22.50% | 3/10 | 33.75% |
| π0.5 [2] | 9/10 | 88.00% | 9/10 | 85.00% | 8/10 | 85.00% | 7/10 | 73.75% |
| τ0-VLA | 10/10 | 97.00% | 10/10 | 95.00% | 9/10 | 92.50% | 10/10 | 95.00% |
| Method | Make Milk Tea | Book Organization | Clean Room | |||
|---|---|---|---|---|---|---|
| SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | SR ↑ | Progress ↑ | |
| Plan Once | 5/10 | 91.92% | 6/10 | 66.67% | 5/10 | 94.80% |
| TTC | 7/10 | 95.38% | 9/10 | 93.33% | 7/10 | 97.60% |
| Coordinates | Dimensions | State representation |
|---|---|---|
| Left EEF position | 1–3 | Cartesian position in meters |
| Left EEF orientation | 4–9 | Rot6D(𝐑L) |
| Right EEF position | 10–12 | Cartesian position in meters |
| Right EEF orientation | 13–18 | Rot6D(𝐑R) |
| Left gripper | 19 | native opening coordinate |
| Right gripper | 20 | native opening coordinate |
| Waist | 21–22 | two native coordinates |
| Planar base velocity | 23–24 | two native coordinates |
| Left arm joints | 25–32 | q1L,…,q8L in radians |
| Right arm joints | 33–40 | q1R,…,q8R in radians |
| Task | Maximum duration |
|---|---|
| Clean Room | 20 min |
| Prepare Ingredients | 20 min |
| Tomato and Egg Stir Fry | 20 min |
| Make Milk Tea | 10 min |
| Book Organization | 5 min |
| Collect Laundry | 5 min |
| Tidy Makeup Table (each group) | 5 min |
| Family | Sampling position | Input → target memory | Target subtask | Deployment failure countered | Mix |
|---|---|---|---|---|---|
| within-subtask | anywhere in seg. n | ℳn→ℳn | seg. n | — (aligned, normal progression) | 58% |
| transition | tail of seg. n | ℳn→ℳn+1 | seg. n+1 | starting a new subtask after completion | 15% |
| catch-up | head of seg. n | ℳn−1→ℳn | seg. n | memory lag (behind the visual state) | 10% |
| rollback | late in seg. n | ℳn+1…n+3→ℳn | retry seg. n | memory run-ahead (over-optimistic) | 12% |
| error-think | annotated failure frame | ℳn→ type-dependent | recovery step | unnoticed execution failure | 5% |
Why it matters
In long robot tasks, picking the wrong subtask can doom the whole run even with perfect motor control, so a method that spends more thought only on hard decisions matters for building reliable household robots. It also shows that test-time scaling, an idea popularized in language models, can be transferred to physical robot control with real gains.
Terms in this paper
- VLA (Vision-Language-Action) model · An AI model that turns camera views and language instructions into robot motor commands
- Test-time computation · Spending extra computation at the moment of use, without retraining, to improve answer quality
- World model · A model that predicts what the environment will look like after a given action
- Beam search · A search method that keeps only the top-scoring few candidate paths at each step and expands them further
- Execution memory · A running summary of how far the robot has progressed through a task so far
Original abstract (English)
Long-horizon robot manipulation requires a robot to both execute individual skills reliably and sequence them coherently over extended tasks. Most hierarchical vision-language-action (VLA) models make each such decision with a single forward pass, leaving no mechanism to allocate additional computation to difficult or consequential choices. We introduce τ_0-VLA, a hierarchical robot foundation model that formulates high-level subtask generation as a compute-scalable inference problem through world-model-guided test-time computation. At each inference step, the high-level policy uses execution memory to generate a subtask and, when needed, searches over alternatives before committing to its output. A low-level policy then executes the generated subtask across multiple robot embodiments. The policy is trained on 40,115 hours of heterogeneous real-world data with multimodal co-training. Across in-domain and distribution-shifted settings, allocating additional test-time computation substantially improves next-subtask prediction accuracy, and these gains translate into higher closed-loop success on long-horizon robot manipulation tasks.
Read on arXivLatest papers
- Asymmetric Attention Heads: Structured Head-Wise Context Allocation for Transformer AttentionTesting whether every attention head in a Transformer really needs to see the same amount of context
- Frequency-Aware Continual Learning for Smart Contract Vulnerability Detection with Large Language ModelsA smart-contract vulnerability detector that keeps learning new bug types without forgetting old ones, then folds everything into one model
- Remember, Verify, or Ask? Cross-Family Evaluation of Memory Commitment in LLM AgentsAI assistants would rather double-check facts than ask you a question, even when asking is the right call
- Are LLMs becoming similarly creative? Evidence from three years of modelsNewer AI chatbots are giving increasingly similar answers to each other, three years of data show
- Specification-delta-driven data governance: an empirical study of the {\guillemotleft}spec-delta{\guillemotright} as the unit of change in lakehouse data platformsTreating data-platform changes like reviewable spec snippets instead of code diffs: an experiment design paper
- A knowledge-guided agentic framework for mitigating patient-context ambiguity in health queriesGetting AI to ask the right follow-up questions before answering vague health queries
- Robust Incomplete Multimodal Sentiment Analysis via Iterative Proxy CorrectionWhen text input is missing or broken, this AI doesn't guess once and move on—it revises its guess step by step to read emotions more reliably
- FlashPrefill V2: Block-Sparse Prefill Attention for Long-Context LLM ServingMaking sparse attention fast enough and accurate enough for real LLM serving, not just papers
Latest from METAL LAB
- Claude Security scans code with new Mythos 5 model
- Coding-focused stealth model 'Ox Alpha' appears free on OpenRouter
- Meta's 'Pocket' Mini-Game App Rolls Out Nationwide in US
- Cursor releases 31 official plugins linking Gmail, Salesforce and more
- Starcloud raises additional $250M for orbital data centers
Figures: Xiaowei Cai et al., arXiv:2608.16885, arxiv-nonexclusive