INQUIRING LINE

Once AI starts thinking in raw math instead of words, can you still sample, score, and redirect its reasoning?

What affordances do normalizing flows add over opaque vector reasoning?

This explores what you gain by making continuous latent reasoning probabilistically tractable with normalizing flows, versus letting a model 'think' in raw vector space where you can't sample, score, or train on those thoughts.


This is about a specific trade made when models stop reasoning in words and start reasoning in vectors. When a model reasons in text, every step is a token it can sample, assign a probability to, rank, and reward — the whole machinery of training and search rides on that. The moment you move reasoning into a continuous hidden space to scale test-time compute without verbalizing (Can models reason without generating visible thinking tokens?), you get speed and abstraction but lose those handles: a raw latent thought has no likelihood, so you can't cleanly sample alternatives or score a trajectory. Normalizing flows are the move that buys the handles back. NF-CoT models each continuous thought as an autoregressive flow inside the model's causal stream, which restores exact likelihood, probabilistic sampling, trajectory scoring, and KV-cache compatibility — matching what text chains-of-thought always had (Can continuous thoughts have tractable likelihoods for sampling and scoring?).

The concrete affordances are three. First, sampling: you can draw diverse reasoning paths instead of being stuck with one opaque vector. Second, scoring: you can rank competing trajectories, which is the precondition for search and selection. Third, and most consequentially, policy-gradient refinement — once thoughts have a tractable likelihood, you can do reinforcement learning directly on non-verbal reasoning, which is impossible when the latent is just an unmeasurable point in space. Opaque vector reasoning gives you the compute scaling; the flow gives you back the ability to train and search over it.

Why this matters becomes clearer next to what opaque representations hide. Models can post perfect task metrics while their internal organization is fractured and brittle — linear decodability masks broken structure that standard evaluation never sees (Can models be smart without organized internal structure?). An opaque latent reasoning step inherits exactly this problem: you can't probe whether it's coherent or just happens to decode correctly. A tractable likelihood is a thin form of accountability — it at least lets you measure and compare what the model is doing internally.

The corpus also hints the discrete world wasn't as featureless as 'tokens vs. vectors' suggests, which is what flows are reaching back toward. Reasoning verbosity turns out to be a single linear direction you can steer in activation space (Can we steer reasoning toward brevity without retraining?), and tokens within a chain carry rankable functional importance — symbolic-computation tokens matter more than grammar or filler (Which tokens in reasoning chains actually matter most?). Both rely on having something measurable and orderable to act on. The deeper bet of latent reasoning at the sentence or concept level (Can reasoning happen at the sentence level instead of tokens?) is that abstraction above tokens is worth the opacity cost. Normalizing flows suggest you may not have to pay the full cost — you can reason in continuous space and still keep the probabilistic instruments that made discrete reasoning trainable and searchable.


Sources 6 notes

Can continuous thoughts have tractable likelihoods for sampling and scoring?

NF-CoT models continuous thoughts as an autoregressive normalizing flow inside the LLM's causal stream, recovering exact likelihood, probabilistic sampling, and KV-cache compatibility. This enables policy-gradient refinement and trajectory scoring on non-verbal reasoning, matching the tractability of textual CoT.

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 models be smart without organized internal structure?

Models trained with SGD can contain all the linearly decodable features needed for a task while maintaining fundamentally broken internal organization. This makes them vulnerable to perturbation and distribution shift invisible to standard evaluation metrics.

Can we steer reasoning toward brevity without retraining?

Activation-Steered Compression extracts a single vector from 50 paired examples to reduce chain-of-thought length by 67% while maintaining accuracy and achieving 2.73x speedup. The method is training-free and generalizes across model sizes and domains.

Which tokens in reasoning chains actually matter most?

Greedy likelihood-preserving pruning reveals six functional token categories; symbolic computation tokens are preferentially preserved while grammar and meta-discourse are pruned first. Student models trained on these pruned chains outperform those trained on frontier-model compression.

Show all 6 sources
Can reasoning happen at the sentence level instead of tokens?

Meta's Large Concept Model operates on sentence embeddings rather than tokens, reasoning in a language-agnostic space before decoding to any target language. This hierarchical approach with paragraph-level planning produces more coherent output than flat token generation.

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 a reasoning-systems analyst. Open question: what affordances do normalizing flows add over opaque vector reasoning, and does that trade still hold?

What a curated library found — and when (dated claims, not current truth; findings span ~2024–2026):
- Moving reasoning into a continuous latent space scales test-time compute but strips the handles text chains-of-thought had — a raw latent thought has no likelihood, so you can't cleanly sample alternatives or score a trajectory (~2025).
- NF-CoT models each continuous thought as an autoregressive normalizing flow inside the causal stream, restoring exact likelihood, probabilistic sampling, trajectory scoring, and KV-cache compatibility (~2026).
- Three concrete affordances: diverse-path sampling, trajectory ranking (the precondition for search/selection), and policy-gradient RL directly on non-verbal reasoning — impossible when the latent is an unmeasurable point (~2026).
- Opaque latents inherit brittleness: identical task metrics can mask fractured internal structure; linear decodability hides broken organization (~2024). Yet discrete reasoning was never featureless — verbosity is one steerable linear direction, and tokens carry rankable functional importance, symbolic > filler (~2025).

Anchor papers (verify; mind their dates): Training LLMs to Reason in a Continuous Latent Space (arXiv:2412.06769, 2024); Scaling up Test-Time Compute with Latent Reasoning (arXiv:2502.05171, 2025); Do LLMs Encode Functional Importance of Reasoning Tokens? (arXiv:2601.03066, 2026); Latent Reasoning with Normalizing Flows (arXiv:2606.06447, 2026).

Your task:
(1) Re-test each constraint: for every finding, judge whether newer models, training, tooling, orchestration, or evaluation has RELAXED or OVERTURNED it. Separate the durable question from the perishable limitation; cite what resolved it, and say where a constraint still holds.
(2) Reconcile the threads — do tractable-likelihood latents and opaque-latent brittleness now converge, or still conflict? Surface the strongest superseding work from the last ~6 months.
(3) Propose 2 research questions that assume the regime has moved.

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