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/Addressable Memory for Video Wor…
PAPR
// RESEARCH PAPER
ARXIV PHYSICAL AI RESEARCH

Addressable Memory for Video World Models

DATE August 7, 2026SOURCE ARXIV PHYSICAL AI RESEARCHPARTICIPANTS XINDI WU, ALJOŠA OŠEP, ET AL. (ARXIV PHYSICAL AI)ARXIV 2608.07408
In this episode
// SUMMARY

1. Key Themes

Training-Free Long-Horizon Memory for Video World Models

The paper introduces WorldTrace, a framework that allows autoregressive video world models to maintain visual persistence over long rollouts without requiring retraining. This is crucial for applications like interactive game engines or closed-loop robot simulators where an agent must revisit previously seen locations and find them consistent. "WorldTrace-Field improves temporal consistency by +15.5%, and WorldTrace-Landmark improves episodic recall by +19.5% on LoopBench, extending visually persistent generation without retraining." (Abstract)

Addressability is the Bottleneck, Not Just Storage

The core finding is that simply storing past frames in a compressed cache is insufficient if the model cannot "read" them. As rollouts extend beyond the training horizon, the temporal positional embeddings (RoPE) fall out of distribution, rendering cached tokens unreadable. "We find that the bottleneck is not simply whether past content is stored in the cache, but whether it remains addressable and how it is compressed... even if past memories are stored in the KV cache, the model cannot reliably retrieve them." (Sec. 1)

Two Complementary Memory Strategies: Coherence vs. Recall

WorldTrace offers two distinct memory writers depending on the use case. WorldTrace-Field averages past frames in a "canonical" (unrotated) space to maintain temporal coherence for smooth continuation. WorldTrace-Landmark stores verbatim "scene-entry" frames for episodic recall when an agent revisits a specific location. "WorldTrace-Field compresses history for temporal coherence, while WorldTrace-Landmark stores verbatim scene traces at detected transitions for episodic recall." (Abstract)

LoopBench: A New Benchmark for Episodic Memory

The authors introduce LoopBench, a benchmark designed to test if a world model can reconstruct a previously visited scene after a long detour (e.g., walking in a loop A->B->C->D->A). This directly tests the practical requirement of spatial consistency in interactive environments. "We further introduce LoopBench, a benchmark evaluating whether a compressed cache can reconstruct a previously visited scene after a long detour." (Abstract)

2. Contrarian Perspectives

Position Assignment is More Critical Than Content Compression

Most memory compression research focuses on what content to keep or discard (e.g., token merging, eviction). This paper argues that if the positional encoding is out of distribution, the content is irrelevant because the model cannot attend to it. "Most prior methods fix only one of the two... Addressable positions cannot help if compression cancels the signal a summary should carry, and an informative summary cannot help if it sits at an out-of-distribution position." (Sec. 2.2)

Naive Averaging in Standard Space Corrupts Memory

A common approach to compressing cached keys is averaging. However, the paper shows that averaging keys in the RoPE-rotated space causes "phase cancellation," where vectors pointing in different directions partially cancel each other out, destroying the signal. "Naively compressing the cache in the RoPE-rotated space corrupts memory by averaging together incompatible positional phases." (Abstract) "If they come from distant timestamps, their angles can point in opposite directions and partially cancel, weakening that frequency’s contribution to the summary regardless of what it encoded." (Sec. 2.2)

3. Companies Identified

NVIDIA

The primary institution behind the research, specifically the Spatial Intelligence Lab. They developed the Matrix-Game-2 (MG2-1.3B) model used for evaluation, and the research directly applies to their world model efforts like Cosmos 3 and Omnidreams. "Our evaluation uses Matrix-Game-2 (MG2-1.3B) [32], a distilled 1.3B-parameter autoregressive game world model..." (Sec. 4.1)

Decart

Referenced for their Oasis interactive world model, representing a key competitor in the real-time game engine space. "Decart, Julian Quevedo... Oasis: A universe in a transformer." (Ref [20])

Google DeepMind

Referenced for Genie 3 world model, a major player in the foundational world model landscape. "Google DeepMind. Genie 3: A new frontier for world models." (Ref [25])

Robbyant Team

Referenced for LingBot-World, another autoregressive world model used in additional experiments to validate the approach across architectures. "We provide additional experiments for LingBot-World [82] in App. E, an autoregressive world model built on a 14B backbone..." (Sec. 4.1)

4. People Identified

Xindi Wu

Princeton University. Lead author, focusing on video generation and memory. "Xindi Wu... Princeton University" (Header)

Jonathan Lorraine

NVIDIA. Senior author, involved in multiple NVIDIA research projects on generative AI and world models. "Jonathan Lorraine... NVIDIA" (Header)

Olga Russakovsky

Princeton University. Prominent researcher in computer vision and AI. "Olga Russakovsky... Princeton University" (Header)

Despoina Paschalidou

NVIDIA. Researcher at NVIDIA's Spatial Intelligence Lab. "Despoina Paschalidou... NVIDIA" (Header)

5. Operating Insights

Extending World Model Horizons Without Retraining

For companies building interactive simulators or game engines, the cost of retraining models to handle longer context windows is prohibitive. WorldTrace provides a training-free method to extend the effective memory horizon. "WorldTrace is a training-free approach for addressable compressed memory over long horizons." (Sec. 1) This means existing models can be adapted at inference time to maintain scene consistency over longer rollouts.

Managing KV Cache Memory for Real-Time Systems

The method keeps peak GPU memory equal to the sliding-window baseline by storing retained keys outside the cache in host memory. "Peak GPU memory therefore stays equal to the sliding-window baseline because the retained keys live outside the cache (App. E.6)." (Sec. 3.3) This is critical for deploying world models on consumer hardware or edge devices where memory is constrained.

6. Overlooked Insights

Floating-Point Drift in bfloat16 Precision

When shifting cached frames over long rollouts, repeatedly unrotating and re-rotating keys accumulates floating-point errors, exacerbated by bfloat16 precision. WorldTrace-Landmark solves this by freezing keys in canonical form. "Over many shifts, these unrotate-rerotate cycles accumulate floating-point errors. This is exacerbated in practice by bfloat16 precision... WorldTrace-Landmark removes this drift by freezing each selected key in canonical form..." (Sec. 3.4) This is a critical engineering detail for anyone implementing long-horizon inference.

The NMF Framing for Future Adaptive Memory

The paper frames memory compression as a Nonnegative Matrix Factorization (NMF) problem, suggesting that future systems could adaptively choose which frames to keep or average based on the query distribution. "This view reduces memory compression design to the choice of P... Relaxing the entries of P from fixed patterns to arbitrary nonnegative values turns this minimization into a nonnegative matrix factorization (NMF) problem..." (Sec. 3.2) This points toward a future where memory management is dynamically optimized at inference time.