INQUIRING LINE

Some AI models now reason without producing words — breaking every tool we have for checking their thinking.

How do you supervise reasoning that never becomes tokens?

This explores a real tension: almost every tool we have for grading reasoning—process rewards, reflection-token analysis, trace correctness—operates on visible text, so what happens when the reasoning lives in hidden state and never surfaces as words?


This explores a real tension: almost every tool we have for grading reasoning operates on visible text, so what do you do when the reasoning never becomes words? Several papers show this isn't hypothetical—models genuinely can reason in latent space. Depth-recurrent architectures, Heima, and Coconut all scale test-time compute by iterating on hidden states rather than emitting tokens, which suggests verbalization is a training habit, not a requirement for thinking Can models reason without generating visible thinking tokens?. Once reasoning goes silent, the usual supervision handles fall away.

The corpus reveals just how much our supervision machinery secretly depends on tokens. Process rewards get mined from what a search agent reads but doesn't cite—an inherently text-level signal Can search agent behavior yield reliable process rewards for reasoning?. Specific words like 'Wait' and 'Therefore' turn out to be mutual-information peaks that actually drive accuracy Do reflection tokens carry more information about correct answers?. And you can identify which tokens carry reasoning by their high variance across rollouts Can we identify which tokens actually matter for reasoning?. All three pin supervision to the token stream. Take the stream away and they have nothing to grab.

Here's the surprising part: a cluster of findings suggests the tokens may have been a poor supervision target all along. Models trained on deliberately corrupted, irrelevant traces solve problems just as well—sometimes generalizing better—implying the trace works as computational scaffolding rather than meaningful steps Do reasoning traces need to be semantically correct?. Chain-of-thought is shaped by format and spatial structure far more than logical content, and invalid prompts work as well as valid ones What makes chain-of-thought reasoning actually work?. Probes even show models commit to easy answers internally before they finish writing the reasoning out Does chain-of-thought reasoning reflect genuine thinking or performance?. If the visible words are often theater, supervising them was never the same as supervising the reasoning.

So the corpus points to a different answer than 'force the reasoning back into tokens': supervise the outcome and let the hidden computation organize itself around it. Quiet-STaR judges its internal rationales purely by whether they improve next-token prediction—no labeled correctness, reasoning emerges as a side effect of better language modeling Can models learn reasoning from predicting any text?. Reinforcement Pre-Training does something similar, turning next-token prediction into a reasoning task graded by the corpus itself, which structurally blocks reward hacking because the answer key is the data Can next-token prediction become a reasoning task with RL?. The pattern is the same one the search-agent work uses: tie the reward to something verifiable and external, and you don't need to read the intermediate steps at all Can search agent behavior yield reliable process rewards for reasoning?.

The alternative, if you want to keep some grip on the process, is to make the reasoning modular instead of legible. Cognitive tools enforce operation isolation through sandboxed calls, and structured critical-question prompts force the model to check its warrants—both impose structure on reasoning without depending on it narrating honestly Can modular cognitive tools unlock reasoning without training? Can structured argument prompts make LLM reasoning more rigorous?. The thing you didn't know you wanted to know: the question secretly assumes tokens were ever good supervision. The corpus's quiet verdict is that outcome-anchored, verifiable rewards supervise latent reasoning better precisely because they never needed to see the steps.


Sources 11 notes

Can models reason without generating visible thinking tokens?

Multiple architectures—depth-recurrent models, Heima, and Coconut—demonstrate that test-time compute scales through hidden state iteration rather than token generation. This suggests verbalization is a training artifact, not a reasoning requirement.

Can search agent behavior yield reliable process rewards for reasoning?

LongTraceRL mines entity-level reasoning signals from what search agents read but don't cite—the hardest distractors—and applies rubric rewards only to correct answers, structurally blocking reward fabrication while capturing intermediate reasoning quality.

Do reflection tokens carry more information about correct answers?

Specific tokens like "Wait" and "Therefore" show sharp spikes in mutual information with correct answers. Suppressing them harms reasoning while suppressing equal random tokens does not, and representation recycling improves accuracy 20%.

Can we identify which tokens actually matter for reasoning?

A small subset of tokens in reference answers change their certainty sharply depending on which chain of thought precedes them, while most tokens remain stable. This variance pattern, computable from the model's own samples, identifies reasoning-bearing tokens without supervision.

Do reasoning traces need to be semantically correct?

Models trained on systematically irrelevant traces maintain solution accuracy and sometimes improve out-of-distribution generalization, suggesting traces function as computational scaffolding rather than meaningful reasoning steps.

Show all 11 sources
What makes chain-of-thought reasoning actually work?

Research shows training format shapes reasoning strategy 7.5× more than domain, demo position swings accuracy 20%, and invalid CoT prompts work as well as valid ones. CoT is pattern-guided generation, not formal logic.

Does chain-of-thought reasoning reflect genuine thinking or performance?

Activation probes show models commit to answers internally long before finishing their reasoning on easy tasks, but on hard tasks the reasoning process tracks real belief updates with detectable inflection points. Probe-guided early exit reduces tokens by up to 80 percent without accuracy loss.

Can models learn reasoning from predicting any text?

Quiet-STaR trains language models to generate rationales at every token position during pretraining on arbitrary internet text, enabling general reasoning without task-specific datasets. Rationale quality is judged by predictive accuracy rather than labeled correctness, allowing reasoning competence to emerge as a side effect of improved language modeling.

Can next-token prediction become a reasoning task with RL?

Reinforcement Pre-Training transforms next-token prediction into a reasoning task by providing verifiable rewards from the corpus itself, eliminating reward hacking and enabling inference-time scaling during pretraining. This suggests token-level reasoning patterns during pretraining strengthen downstream RL fine-tuning.

Can modular cognitive tools unlock reasoning without training?

Four cognitive tools implemented as sandboxed LLM calls improved GPT-4.1 on AIME2024 from 26.7% to 43.3% without any RL training. Modularity enforces operation isolation that pure prompting cannot guarantee, eliciting pre-existing reasoning capability.

Can structured argument prompts make LLM reasoning more rigorous?

Applying Toulmin's argument model as explicit prompting steps (CQoT) improves LLM reasoning by forcing models to identify warrants and backing rather than skipping implicit premises. The method catches failures that standard chain-of-thought prompting allows.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are an analyst probing a still-open question: how do you supervise reasoning that never becomes tokens? Treat the tension as live, not settled.

What a curated library found — and when (dated claims, not current truth; span 2024–2026):
- Latent-reasoning architectures (depth-recurrent, Heima, Coconut) scale test-time compute by iterating on hidden states, not emitted tokens — verbalization looks like a training habit (~2025).
- Our supervision machinery secretly depends on tokens: process rewards mined from search-agent read-but-uncited text (~2026); words like 'Wait'/'Therefore' are mutual-information peaks that drive accuracy (~2025); reasoning tokens are identifiable by high cross-rollout variance (~2025).
- Deliberately corrupted or irrelevant traces solve problems comparably, sometimes generalizing better — trace as computational scaffolding, not steps (~2025); CoT is shaped by format/structure over logic (~2025); models commit to easy answers internally before finishing the written reasoning (~2026).
- Outcome-anchored alternatives: Quiet-STaR judges rationales purely by next-token improvement, no labels (~2024); Reinforcement Pre-Training grades against the corpus, structurally blocking reward hacking (~2025).

Anchor papers (verify; mind their dates): Quiet-STaR (2024); Scaling Test-Time Compute with Latent Reasoning: A Recurrent Depth Approach (2025); Beyond Semantics: The Unreasonable Effectiveness of Reasonless Intermediate Tokens (2025); RLP: Reinforcement as a Pretraining Objective (2025).

Your task: (1) RE-TEST EACH CONSTRAINT — for every finding, judge whether newer models, training, tooling, orchestration (memory, multi-agent), or evaluation has RELAXED or OVERTURNED it; separate the durable question from the perishable limit, cite what resolved it, and say where a constraint still holds. (2) Surface the sharpest CONTRADICTING or SUPERSEDING work from the last ~6 months — especially papers that dispute whether token supervision or outcome supervision better constrains latent reasoning. (3) Propose 2 research questions assuming the regime has moved.

Cite arXiv IDs; flag anything you cannot ground in a real paper.