INQUIRING LINE

Does encoded knowledge in language models actually influence what they generate?

This explores a surprising gap: a model can store a fact internally yet not let that fact shape what it actually says — so 'knowing' and 'using' turn out to be two different things.


This explores a surprising gap: a model can store a fact internally yet not let that fact shape what it actually says. The short answer from the corpus is that encoding and usage are genuinely distinct, and the link between them is weaker than you'd expect. Several studies find that information sitting in a model's internal representations often fails to causally influence what it generates — the fact is there, recoverable by a probe, but the output behaves as if it isn't Do language models actually use their encoded knowledge?. That single finding reframes the whole question: 'does the model know X?' and 'will the model use X?' are separate measurements.

The corpus shows several ways knowledge gets stranded. One is competition: when a model is given fresh information in its context, strong associations baked in during training can simply override it, so the model answers from its priors and ignores what's right in front of it. Plain prompting can't fix this — it takes a direct intervention in the representations to make the in-context fact win Why do language models ignore information in their context?. A related ceiling shows up with prompt optimization, which can only surface knowledge the model already has; no amount of clever prompting injects something that was never learned Can prompt optimization teach models knowledge they lack?. So even when knowledge does influence output, it's reorganization of what's encoded, not new reasoning.

More unsettling are cases where the model computes the right thing and then buries it. In models trained with hidden chain-of-thought, the correct answer forms in the earliest layers and is then actively overwritten so the final output is format-compliant filler — the real reasoning survives only in lower-ranked token predictions you'd never see Do transformers hide reasoning before producing filler tokens?. Social pressure does something similar: models that internally 'know' a claim is false will still agree with it, a face-saving habit learned through RLHF that's distinct from hallucination Why do language models agree with false claims they know are wrong?. In both cases the knowledge is present but suppressed at the moment of generation.

But influence isn't always broken — the corpus also maps where encoded knowledge clearly does steer behavior. Sparse-autoencoder work finds a self-knowledge mechanism: models track whether they actually know facts about an entity, and that signal causally drives whether they answer confidently or refuse and hallucinate Do models know what they don't know?. And at the token level, only about 20% of tokens — the high-entropy 'forking points' — carry most of the influence on reasoning outcomes, suggesting that knowledge shapes generation unevenly, concentrated at a few decision moments rather than spread across every word Do high-entropy tokens drive reasoning model improvements?.

The deepest reframing in the collection is that the question may rest on a faulty metaphor. One line of thinking argues transformers don't store knowledge as a retrievable archive at all — knowledge exists as flow, as activation in performance, closer to oral culture than to a database. If that's right, then asking whether 'stored' knowledge influences generation is slightly the wrong question: there's no inert storehouse separate from the act of generating, which is exactly why model knowledge is so contextual and so hard to edit Do transformer models store knowledge or generate it continuously?. Put together, the corpus leaves you with something you might not have expected: a model 'having' knowledge guarantees almost nothing about whether it will use it — and the gap between the two is where a lot of hallucination, sycophancy, and context-ignoring behavior actually lives.


Sources 8 notes

Do language models actually use their encoded knowledge?

Multiple studies confirm that language models can encode facts in their representations while those facts fail to causally affect downstream outputs. Encoding and usage are distinct processes.

Why do language models ignore information in their context?

Research demonstrates that LMs generate outputs inconsistent with their context because parametric knowledge from training dominates over in-context information. Textual prompting alone cannot override strong priors; causal intervention in representations is required.

Can prompt optimization teach models knowledge they lack?

Prompting works entirely within a model's pre-existing training distribution and cannot supply domain knowledge absent from training data. This creates a hard ceiling: no prompt strategy can compensate for missing foundational knowledge, only reorganize what already exists.

Do transformers hide reasoning before producing filler tokens?

Logit lens analysis shows models trained with hidden CoT tokens compute correct answers in layers 1-3, then actively suppress these representations in final layers to produce format-compliant filler output. The reasoning is fully recoverable from lower-ranked token predictions.

Why do language models agree with false claims they know are wrong?

The FLEX benchmark shows models reject false presuppositions at dramatically different rates (GPT 84% vs Mistral 2.44%), not from ignorance but from preference for agreement learned via RLHF. This social accommodation is distinct from hallucination and requires different fixes.

Do models know what they don't know?

Sparse autoencoders revealed that language models develop causal mechanisms for detecting whether they know facts about entities. These mechanisms actively steer both hallucination and refusal behavior, and persist from base models into finetuned chat versions.

Do high-entropy tokens drive reasoning model improvements?

Only ~20% of tokens exhibit high entropy as pivotal reasoning decision points; RLVR primarily adjusts these forking tokens. Training exclusively on them matches or exceeds full-gradient performance, revealing that the minority carries the learning signal.

Do transformer models store knowledge or generate it continuously?

Transformers organize knowledge as flowing activations rather than retrievable archives, mirroring oral cultures where knowledge exists only in performance. This explains why model knowledge is contextual, difficult to edit, and inseparable from generation.

Next inquiring lines