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/RoboTTT: Context Scaling for Rob…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

RoboTTT: Context Scaling for Robot Policies

DATE July 16, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS YUNFAN JIANG, LINXI "JIM" FAN, ET AL. (ARXIV PHYSICAL AI)ARXIV 2607.15275
// KEY TAKEAWAYS5 ITEMS
  1. 01Context Length as a New Scaling Axis for Robot Foundation Models
  2. 02Test-Time Training Enables Constant Inference Cost Regardless of Context Length
  3. 03Long-Horizon, Multi-Stage Assembly Becomes Feasible
  4. 04One-Shot Imitation from Human Video Demonstrations
  5. 05DAgger Distillation: Learning to Self-Correct from Failure-Correction Pairs
// SUMMARY

1. Key Themes

Context Length as a New Scaling Axis for Robot Foundation Models

The paper demonstrates that scaling pretraining context length yields steady, unsaturated gains in closed-loop robot performance — analogous to how context length scaling has driven LLM capabilities. RoboTTT pretrained at 8K timesteps achieves 71.5% average task completion score, which is 63% higher than the same model pretrained at 1K timesteps (43.9%) and 57% higher than the best short-context baseline (45.6%). The paper states: "RoboTTT exhibits a clear scaling trend: closed-loop performance increases steadily with pretraining context length, reaching 71.5% at 8K... with no sign of saturation" (Section 4, Figure 8). This is the first time such a scaling law has been demonstrated for robot policies, suggesting that companies building robot foundation models should treat context length as a first-class design variable alongside model size and data scale.

Test-Time Training Enables Constant Inference Cost Regardless of Context Length

RoboTTT integrates Test-Time Training (TTT) layers — small MLPs whose parameters ("fast weights") are updated via gradient descent during both training and inference — into the Diffusion Transformer action head of GR00T N1.7. Unlike Transformer-based policies whose KV cache grows linearly with history, TTT compresses history into a fixed-size weight space. The paper explains: "propagating fast weights over time keeps inference cost constant, whereas Transformer inference grows with history even with a KV cache" (Section 1). This means robots can condition on 5+ minutes of rollout history at 30Hz control without any inference latency penalty — a critical property for real-time deployment.

Long-Horizon, Multi-Stage Assembly Becomes Feasible

RoboTTT fully completes a five-minute, ten-stage assembly task ("Gear Bot") in 2 out of 10 trials, while no baseline ever achieves full completion (Table 1). On average across three real-robot bimanual assembly tasks, RoboTTT scores 79% task completion versus 42% for the single-step baseline — an 87% relative improvement (Section 4, Figure 7). The paper attributes this to the fast weights' ability to "retain salient features of the history and disambiguate the current stage" when visually similar stages cause state aliasing (Section 4).

One-Shot Imitation from Human Video Demonstrations

RoboTTT can learn a new task configuration from a single in-context human video demonstration — no robot data collection needed for the new configuration. On the Circuit task with 80 possible configurations (trained on 20, tested on 60 unseen), RoboTTT achieves 6/10 successful assemblies from a single human video, while the GDN baseline fails entirely (0/10) (Table 2). The paper notes: "the target configuration is identifiable only from the in-context video" since the language prompt is identical across all configurations (Section 4).

DAgger Distillation: Learning to Self-Correct from Failure-Correction Pairs

The paper introduces "DAgger Distillation," which uses suboptimal robot actions as context (updating fast weights) while computing the imitation loss only on human corrections. This distills the failure-to-correction mapping into the model's fast weights, enabling on-the-fly recovery during deployment. From the same DAgger data, this yields a 36% improvement for RoboTTT versus 13% from standard DAgger fine-tuning on sequence models (Section 4, Figure 10). The paper observes: "most of DAgger Distillation's gain comes from recovering after wrong actions... indicating that the failure-to-correction mappings distilled into the fast weights manifest as on-the-fly improvement during rollout" (Section 4).


2. Contrarian Perspectives

Naively Adding History Frames Hurts Performance

Most practitioners assume that giving a robot policy more observation history will improve performance. This paper shows the opposite: on the Pup Go Car task, GR00T N1.7 with one history frame scores 39.5% versus 57% for the no-history version — a 31% relative degradation. The paper explains: "appended histories can introduce spurious correlations and leave the robot temporally out of distribution at inference" (Section 4). The implication is that simply concatenating past frames into existing VLA architectures is counterproductive; the architecture must be designed to compress and exploit history, not just receive it.

Linear Recurrence Is Insufficient; Test-Time Gradient Descent Is Necessary

A natural alternative to TTT layers would be modern linear-recurrence architectures (e.g., Mamba, Gated DeltaNet), which also offer constant-size states. The paper directly compares against GDN (Gated DeltaNet) layers with matched parameter counts and finds that GDN "shows no such trend" of scaling with context length (Section 4, Figure 8). The paper hypothesizes: "the gated delta rule, a linear associative update without test-time gradient descent, struggles to extract structure from dense, repetitive robot streams across thousands of timesteps, whereas RoboTTT's nonlinear fast model, updated by gradient descent at test time, is the more expressive compressor" (Section 4). This challenges the growing assumption that linear-attention/RNN architectures are sufficient substitutes for attention in robotics.

Suboptimal Robot Actions Are Valuable as Context, Not as Imitation Targets

Standard practice in robot learning (including DAgger) discards suboptimal robot actions and trains only on human corrections. The paper shows that fine-tuning on full trajectories (robot actions included as imitation targets) performs identically to corrections alone (57% for both). But when those same suboptimal actions are used as context for fast-weight updates — with corrections as the loss target — performance jumps significantly. The paper states: "Their value is as context" (Section 4). This suggests the field has been throwing away the most informative part of DAgger data.


3. Companies Identified

NVIDIA

Description: The paper is authored by NVIDIA researchers (Yevgen Chebotar, Ruijie Zheng, Fengyuan Hu, Yunhao Ge, Jimmy Wu, Tianyuan Dai, Scott Reed, Linxi "Jim" Fan, Yuke Zhu) in collaboration with Stanford and UT Austin. RoboTTT is built on top of GR00T N1.7, NVIDIA's open foundation model for generalist humanoid robots. Why relevant: This paper extends NVIDIA's GR00T platform with a new architectural capability (long-context TTT layers) that could become a core differentiator. The deployment runs on an NVIDIA RTX 5090 GPU at 30Hz, and pretraining uses 16 NVIDIA GB200 GPUs. NVIDIA is positioning context length as a scaling axis for its robot foundation models, which could create a moat if validated. Quote: "We instantiate RoboTTT on pretrained GR00T N1.7 (51), adding a TTT layer to each of its 16 DiT layers" (Section 3.4).

Physical Intelligence (π)

Description: Referenced as a baseline VLA model (π0 and π0.5) in the related work. Physical Intelligence builds generalist robot policies. Why relevant: Their models operate with single-step or short-history context, which is exactly the limitation RoboTTT addresses. If context length scaling proves to be a durable axis, PI's architectures may need adaptation. Quote: Referenced in citations (5; 60) as operating with "single-step or short-history visuomotor context" (Section 1).

Google DeepMind

Description: Referenced via RT-1, RT-2, and RoboCat — Google's robot foundation models. Why relevant: These models represent the dominant paradigm of short-context VLA policies that RoboTTT challenges. Google's architectures would need significant modification to support long-context conditioning via TTT. Quote: Listed among models that "operate with single-step or short-history visuomotor context" (Section 1).


4. People Identified

Linxi "Jim" Fan

Lab/Institution: NVIDIA GEAR Lab Why notable: Senior research scientist at NVIDIA and one of the most visible figures in Physical AI. Co-advised this work. His lab (GEAR) is behind GR00T and now RoboTTT, positioning NVIDIA's robot foundation model strategy around context scaling. Quote: Listed as equal advising author (Section: author list).

Li Fei-Fei

Lab/Institution: Stanford Vision and Learning Lab (SVL) Why notable: One of the most influential figures in computer vision and AI, co-director of Stanford's Institute for Human-Centered AI. Her involvement signals that long-context robot policies are being taken seriously at the highest levels of academic AI. Quote: Listed as equal advising author (Section: author list).

Yuke Zhu

Lab/Institution: NVIDIA GEAR Lab / UT Austin Why notable: Co-director of the Good Systems Lab at UT Austin, a leading researcher in robot manipulation and learning. Co-advised this work and is a core member of the GR00T team. Quote: Listed as equal advising author (Section: author list).

Yunfan Jiang

Lab/Institution: Stanford / NVIDIA Why notable: Lead author, previously first author on VIMA (multimodal prompt-based robot manipulation). His trajectory from prompt-conditioned manipulation to long-context TTT policies represents a coherent research program toward more adaptive robot control. Quote: Lead author; the paper's core method is his contribution.

Yu Sun

Lab/Institution: Not directly affiliated with this paper, but referenced extensively as the creator of the Test-Time Training framework (citations 63, 64, 77, 78). Why notable: Originator of the TTT paradigm. His foundational work on fast weights updated by gradient descent at test time is the core mechanism RoboTTT builds upon. Companies should track his lab's developments as the source of this architectural family. Quote: "Test-Time Training (TTT) (64; 78) introduces fast weights that are updated during both training and inference to dynamically model contextual information" (Section 2).


5. Operating Insights

Design Robot Policies for Constant Inference Cost Over Arbitrary Context Lengths

For CTOs and heads of engineering: the choice of sequence modeling mechanism directly determines whether your robot can maintain awareness over long rollouts without latency degradation. Transformer-based policies with KV caches grow linearly in memory and compute with history length, making them impractical for multi-minute tasks. RoboTTT's TTT layers offer a fixed-size state (fast weights) updated by gradient descent, keeping inference cost constant at 30Hz even with 8K-timestep (4+ minute) context. The paper confirms: "propagating fast weights over time keeps inference cost constant, whereas Transformer inference grows with history even with a KV cache" (Section 1). If your deployment scenarios involve long-horizon tasks, multi-stage assembly, or any form of in-episode adaptation, you should evaluate TTT-style architectures over naive history concatenation or autoregressive sequence models.

DAgger Data Should Be Used Asymmetrically: Failures as Context, Corrections as Targets

For teams collecting teleoperation data with interventions: the standard practice of fine-tuning only on human corrections discards the most informative signal. RoboTTT's DAgger Distillation uses the full interaction history (including robot failures) to update fast weights, while computing the imitation loss only on human corrections. This yields 36% improvement for RoboTTT versus 13% from standard DAgger — nearly 3x the gain from the same data (Section 4, Figure 10). The practical implication: your data collection pipeline should preserve the temporal interleaving of robot actions and human corrections, and your training pipeline should use them asymmetrically rather than filtering to corrections-only.


6. Overlooked Insights

Sequence Action Forcing Is Critical for Stable Diffusion Policy Training Over Long Contexts

The paper introduces "sequence action forcing" — sampling noise levels independently for each action chunk in a training sequence, rather than sharing one noise level across the entire sequence. Without it, "training is unstable, possibly because sharing one noise level across the sequence makes entire sequences uniformly easy or uniformly hard to learn" (Section 3.2). The ablation shows removing it "significantly hurts closed-loop performance: the resulting inaccurate motions leave the robot unable to make meaningful progress" (Section 4, Figure 12). This is a non-obvious training detail that any team attempting to train diffusion/flow-matching policies over long sequences will need to rediscover — or adopt from this recipe.

The Model Is Surprisingly Small: 690M Parameters Total

Despite achieving state-of-the-art long-horizon manipulation results, RoboTTT adds only ~10M parameters per TTT layer (16 layers) on top of GR00T N1.7's 538M-parameter DiT, for 690M total (Appendix A.1). Each fast model is just a two-layer MLP. This suggests the capability gains come from the architectural mechanism and training recipe, not from scaling model size — a counterintuitive finding in an era of billion-parameter robot models. The paper also notes that the TTT-linear variant (replacing the MLP with a linear layer) is 27% worse, "suggesting that expressive, nonlinear fast models matter most" (Section 4, Figure 12). The implication: a small but well-designed fast-weight model can unlock capabilities that much larger but architecturally simpler models cannot.