SYNTHESIS NOTE
TopicsLLM Architecturethis note

Can embedding future information in training data improve planning?

This explores whether inserting lookahead tokens containing future goals into training sequences helps models learn long-range planning without changing their architecture. The question matters because it tests whether data-level changes can produce architectural-level reasoning improvements.

Synthesis note · 2026-02-22 · sourced from LLM Architecture
How should we spend compute at inference time? What kind of thing is an LLM really? How do you navigate synthesis across fragmented research topics?

TRELAWNEY (2504.11336) identifies a structural mismatch in causal language model training: each token is predicted from previous context, but in human writing and reasoning, goals are typically known before exact arguments or phrasings. Teacher forcing compounds this — it accelerates training by providing correct previous output, but models trained this way latch onto local patterns and surface-level correlations rather than learning long-range dependencies.

The fix is data-centric rather than architectural. TRELAWNEY augments training data by interleaving special lookahead tokens (<T> and </T>) that encapsulate future information. The placement and content of these tokens can be random or task-specific. The model learns from modified training data using the standard training infrastructure — no architecture changes, no additional training tricks.

The results span planning, algorithmic reasoning, and story generation. The model's goal generation capability — a natural byproduct of the training augmentation — can further improve planning and reasoning when used at inference time. This training-time goal conditioning is the complement of Does planning direction affect how hard problems become?, which provides goal information at inference time by reversing search direction — TRELAWNEY internalizes backward planning's benefits during training.

This is a different intervention than multi-token prediction (Bachmann & Nagarajan, 2024; Gloeckle et al., 2024), which forces simultaneous prediction of multiple future tokens. Multi-token prediction modifies the training objective and often the architecture. TRELAWNEY modifies only the training data, making it compatible with existing infrastructure and scalable to any model size.

Since Does training data format shape reasoning strategy more than domain?, TRELAWNEY is evidence that format intervention at the training data level can have architectural-level effects. The lookahead tokens create a new "format" that teaches the model to condition generation on future goals — changing its reasoning strategy from purely autoregressive to goal-conditioned.

The connection to Can backward reasoning during training improve forward reasoning? is complementary: backward reasoning provides consistency checking from the end state, while lookahead tokens provide goal information from the future. Both address the forward-only limitation of standard NTP from different angles.

Inquiring lines that read this note 24

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

Can self-supervised signals enable process supervision without human annotation? How faithfully do LLMs reflect their actual reasoning in outputs and explanations? How should memory consolidation strategies shape agent performance over time? Can next-token prediction alone produce genuine language understanding? What structural advantages do diffusion language models offer over autoregressive methods? What memory architectures best support persistent reasoning across extended interactions? What makes weaker teacher models effective for stronger student training? Why do reward structures fail to shape long-term agent learning? Does decoupling planning from execution improve multi-step reasoning accuracy? How does latent reasoning compare to verbalized chain-of-thought? What capability tradeoffs emerge when scaling model reasoning abilities? What pretraining choices and baseline capability constrain reinforcement learning gains? How do training priors constrain what context information can override? Does recurrence enable reasoning capabilities that fixed-depth transformers cannot achieve? Do language models develop causal world models or rely on statistical patterns?

Related concepts in this collection 5

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
14 direct connections · 136 in 2-hop network ·dense cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

data-centric lookahead tokens enable planning without architectural changes by embedding future information in training sequences