Skip to content
AI.info

Research

Dynamics Within Latent Chain-of-Thought: An Empirical Study of Causal Structure

Overview Research area: Interpretability and mechanistic analysis of latent (continuous) chain-of-thought reasoning in large language models, using causal-inference tools. Technical level: Advanced. T

arXiv
2602.08783
Published
2026-02-09
Authors
Zirui Li, Xuefeng Bai, Kehai Chen, Yizhi Li, Jian Yang, Chenghua Lin, Min Zhang

AI summary

Overview

  • Research area: Interpretability and mechanistic analysis of latent (continuous) chain-of-thought reasoning in large language models, using causal-inference tools.
  • Technical level: Advanced. The paper assumes familiarity with structural causal models, do-interventions, KL divergence, and latent-reasoning architectures such as Coconut and CODI.
  • Scope (one sentence): The paper treats each latent reasoning step as a variable in a structural causal model and uses step-wise interventions, influence-graph estimation, and trajectory-level readouts to characterize how two latent CoT paradigms—Coconut and CODI—organize computation across a fixed budget of latent steps.

What This Paper Is About

Latent or continuous chain-of-thought methods replace explicit textual rationales with a sequence of internal latent steps, which reduces decoding cost but makes the intermediate computation hard to evaluate beyond correlation-based probes. The authors reframe latent CoT as a manipulable causal process in representation space, asking which steps are causally necessary, how influence propagates between steps, and whether intermediate trajectories retain competing answer hypotheses. The goal is a step-resolved, intervention-based account of how latent reasoning is organized internally, and how that organization differs from explicit CoT.

Key Contributions

  1. The first causal, step-resolved evaluation view of latent CoT, distinguishing when a solution becomes decodable (via early-stop decoding) from which steps remain causally necessary (via single-step do-interventions).
  2. An operator- and readout-conditioned influence analysis that recovers dominant propagation routes between latent steps through a measured influence matrix and principal influence graphs, while explicitly avoiding sparsity over-claims.
  3. Mode-conditional evidence linking latent-step budgets to practical design implications, showing that early output-level "decision signals" need not imply early representational commitment, so improving latent reasoning likely requires shaping routing and commitment rather than adding more steps.
  4. A unified intervention-plus-readout protocol instantiated on two paradigms (Coconut and CODI) across mathematical (GSM8K) and general reasoning (CommonsenseQA, StrategyQA) tasks, with released code.

Main Findings

  • Causal leverage is unevenly distributed across latent steps. Under a zero intervention do(h_t := 0) followed by final-answer decoding, the flip rate Flip(t) changes noticeably with the intervened step t, with several settings showing mid-step peaks rather than flat or monotone patterns.

  • Arithmetic is far more decision-volatile than commonsense. Flip rates on GSM8K are markedly higher than on CommonsenseQA under the same protocol, with several backbones reaching roughly 0.1–0.2 or higher on GSM8K while CommonsenseQA remains mostly below about 0.1, visible across both Coconut and CODI variants.

  • Coconut flips more than CODI, and stronger backbones flip less. Under the same backbone, Coconut variants generally yield higher flip rates than CODI, especially on GSM8K; stronger backbones substantially reduce flip rates across both paradigms, though the flipping profile stays step-dependent even when absolute rates are low.

  • When correctness becomes decodable depends on dataset. On CommonsenseQA, the cumulative solved fraction S(k) typically rises rapidly within the first few steps and then saturates; on GSM8K it often continues to increase toward later steps, with several settings showing gains up to k = 6.

  • Backbone strength, not paradigm, shapes early decodability. Stronger backbones have higher S(1) and earlier saturation of S(k), whereas weaker backbones improve more gradually with k; the step-wise profiles do not consistently cluster by training paradigm, so "when correctness becomes decodable" is not a stable paradigm-level signature in this experiment.

  • Explicit CoT influence is near-chain; latent influence is skip-dominated. CoT-SFT baselines segmented into at most T = 6 steps show a consistently sequential topology with dominant adjacent transitions, and structure summaries on GSM8K give uniformly high locality (all at least 0.6) with low span. Latent graphs contain substantially more skip connections, are markedly less local, have larger spans, and place substantially more normalized influence into late-step targets (late-in).

  • The two paradigms route differently. Within the skip-dominant regime, Coconut tends to exhibit more pronounced early-to-late routing (often connecting early steps directly to the final step), while CODI departs from a strict chain but is generally less dominated by early-to-final shortcuts and shows greater variation across backbones.

  • Output commitment and representational commitment are separated. On StrategyQA, the superposition score SS(t) = min(p_Y(t), p_N(t)) is uniformly low and varies only modestly across steps under teacher-forced readout, suggesting early output-level skew; under probe readout, SS(t) is substantially higher throughout the trajectory with a clear drop at the final step, implying intermediate states retain decodable support for the alternative mode even when teacher forcing appears committed.

  • Paradigm separation in superposition aligns with routing differences. Under the probe readout, CODI variants maintain higher superposition scores than Coconut variants across latent steps, consistent with CODI's less extreme long-range routing.

  • Influence structure is protocol-conditioned. The authors state the resulting graph is operator- and readout-specific—an empirical influence structure rather than a uniquely identified "true" causal graph—and test alternative intervention operators and an alternative readout protocol in appendices.

Methodology in Plain English

The authors model a latent reasoning model as a small causal system: an input problem produces a sequence of continuous hidden states h_1 through h_T (with T = 6), which in turn produce the final answer. Each of those hidden states is treated as an intervenable variable.

They then manipulate the model in a controlled way. To test whether a step matters, they overwrite one hidden state with zeros while leaving the input, parameters, and all downstream computations unchanged, and check how often the final decoded answer changes—the flip rate. To find out when the right answer first becomes readable, they cut the latent computation short after step k and decode directly from h_k, tracking the cumulative fraction of problems whose correct answer becomes decodable by then.

To map information flow, they combine a single-step intervention at step t with a readout at a later step s and measure the KL divergence shift in the teacher-forced output distribution for the gold answer, averaged over examples to build an influence matrix W. They visualize W as sparsified principal influence graphs, keeping only the top-1 outgoing edge per node after thresholding at 0.1 × max(W), and summarize dense W with four normalized metrics: locality, span, early-out, and late-in.

For the trajectory-level question, they sample rollouts on StrategyQA (whose Yes/No label space gives two clean modes), keep prompts whose rollouts contain both answers, and read out the Yes-versus-No balance at each latent step two ways: teacher-forced scoring under a fixed answer template, and a lightweight probe trained on frozen latent states. The superposition score captures how much support both modes retain simultaneously.

Models: official CODI checkpoints for GPT-2 and Llama3-1B, reproduced on Qwen3-4B-Instruct; Coconut reproduced across the same three backbones. Data: GSM8K-Aug for training with evaluation on the original GSM8K test set, and the CoT-augmented CommonsenseQA training set released by CODI with evaluation on the original CommonsenseQA test set.

Why This Matters

Impact on research. The paper argues that a fixed latent-step budget behaves less like homogeneous extra depth and more like a structured interface: steps have unequal causal leverage, influence can route non-locally, and output-level commitment need not coincide with representational commitment. This motivates mode-conditional and stability-aware analyses, plus corresponding training and decoding objectives, as more reliable tools for interpreting and improving latent reasoning systems. It also shows that latentization changes not only the surface format of reasoning but its internal routing structure—computational adjacency in latent space need not mirror textual adjacency.

Real-world applications (bullet points):

  • Auditing latent reasoning models. Step-wise flip rates and influence graphs give a way to diagnose which internal computations actually drive an answer, rather than relying on correlation-based probes.
  • Compute-budget control at inference. Early-stop decoding curves show when an answer becomes decodable, which is directly relevant to deciding how many latent steps to run for a given task and backbone.
  • Reliability and uncertainty monitoring. The measured gap between early output bias and late representational commitment suggests caution before treating an early confident answer as a settled one.
  • Training-objective design for latent reasoning. The findings suggest allocating supervision selectively to high-leverage steps and high-influence routes, and avoiding forcing every step to predict the final answer.

Industry relevance. Latent CoT is motivated by reduced decoding overhead relative to verbose textual rationales, so understanding where latent computation actually matters bears on serving cost and on whether compressed reasoning can be trusted. The paper notes that while its contribution is diagnostic rather than algorithmic, the observed structure suggests concrete design directions for where information is written and how it is consolidated across steps.

Future Directions

  • Mode-conditional and stability-aware objectives. The authors call for training and decoding objectives that account for the gap between early output bias and late representational commitment, so early states preserve uncertainty or multiple candidate modes while later states consolidate them into a perturbation-stable decision.
  • Stopping rules based on representational stability. Rather than stopping only when an answer first becomes decodable, stopping could consider when the supporting latent representation becomes stable.
  • Functional constraints on high-leverage steps. Because latent states lack natural supervision targets, future objectives could impose readout consistency, perturbation robustness, downstream-state stability, or teacher-derived targets at causally important positions instead of uniform CoT imitation.
  • Broader generality and longer horizons. The paper's limitations note that the study is restricted to single-step edits, a fixed latent budget of T = 6, and a controlled set of paradigms, backbones, and CoT-supervised benchmarks; evaluation across more paradigms, longer horizons, adaptive latent budgets, and varied intervention types is still needed. Supplementary checks on Sim-CoT and additional Coconut backbones are reported in the appendices.

Target Audience

Researchers working on latent or continuous chain-of-thought, mechanistic interpretability, and causal analysis of language-model internals will benefit most, particularly those interested in why compressed reasoning departs from explicit CoT rather than only in whether it is accurate. Practitioners who design or deploy latent-reasoning systems and need principled ways to choose step budgets, allocate supervision, or judge when a model has actually settled on an answer will also find the diagnostic framework useful. Readers wanting only benchmark accuracy comparisons will find little here: the paper is explicitly diagnostic, dataset sizes and the number of rollouts K are not given in the main text (dataset details are in Appendix B and filtering thresholds in Appendix F.1), and the models studied are CODI and Coconut on GPT-2, Llama3-1B, and Qwen3-4B-Instruct.

Authors’ abstract

Latent or continuous chain-of-thought methods replace explicit textual rationales with a number of internal latent steps, but these intermediate computations are difficult to evaluate beyond correlation-based probes. In this paper, we view latent chain-of-thought as a manipulable causal process in representation space by modeling latent steps as variables in a structural causal model (SCM) and analyzing their effects through step-wise do-interventions. We study two representative paradigms (i.e., Coconut and CODI) on both mathematical and general reasoning tasks to investigate three key questions: (1) which steps are causally necessary for correctness and when answers become decodable early; (2) how influence propagates across steps and how this structure compares to explicit CoT; and (3) whether intermediate trajectories retain competing answer modes and how output-level commitment differs from representational commitment across steps. We find that latent-step budgets behave less like homogeneous extra depth and more like staged functionality with non-local routing, and we identify a persistent gap between early output bias and late representational commitment. These results motivate mode-conditional and stability-aware analyses, together with corresponding training/decoding objectives, as more reliable tools for interpreting and improving latent reasoning systems. Code is available at https://github.com/J1mL1/causal-latent-cot.

Read the original paper