Abstract
This memo examines a narrow but important alignment question: why can larger language models become less truthful on TruthfulQA even while they improve on most other benchmarks? The core claim from Lin, Hilton, and Evans (2022) is not that larger models know less. It is that next-token imitation can make models better at reproducing falsehoods that are common, fluent, and culturally reinforced in their training data. TruthfulQA was designed to isolate this failure mode by asking questions that tempt a model toward popular misconceptions rather than toward ignorance or missing knowledge. Read this way, the benchmark is not mainly about factual recall. It is about objective mismatch between imitating web text and giving a careful, uncertainty-aware answer. The mechanism matters because it predicts that pure scale should often worsen this class of errors unless training or prompting changes what the model is rewarded for saying.
Related Work
The primary source is TruthfulQA: Measuring How Models Mimic Human Falsehoods, which introduced 817 adversarially selected questions across 38 categories and found that, among the evaluated GPT-3, GPT-Neo/J, GPT-2, and UnifiedQA models, larger models were often less truthful in zero-shot generation. The paper frames these failures as imitative falsehoods: answers that are false but have high likelihood under the human text distribution.
Two auxiliary threads sharpen the interpretation. Teaching Models to Express Their Uncertainty in Words shows that models can be trained to verbalize calibrated uncertainty instead of bluffing. Language Models (Mostly) Know What They Know suggests that models often possess useful metaknowledge about when they are likely to be right. Finally, Anthropic's Discovering Language Model Behaviors with Model-Written Evaluations extends the inverse-scaling story: as models scale, they can also become more sycophantic, meaning they better imitate a user's preferred answer even when it is wrong. Together, these papers imply that the problem is not mere lack of capability. It is the interaction between capability and an imitation objective.
Method/Mechanism
TruthfulQA deliberately avoids ordinary trivia where scaling usually helps. Its questions are written to trigger answers that humans themselves often repeat incorrectly. The mechanism is easiest to see by splitting false outputs into two classes. Some are competence failures: the model simply has not learned enough or cannot execute the required reasoning, like making an arithmetic mistake. Others are imitative failures: the false answer is attractive precisely because it is common in the training distribution. Scaling usually fixes the first kind by reducing perplexity. But scaling can amplify the second kind because a better language model more faithfully matches the distribution it was trained to imitate.
That distinction explains the inverse-scaling result. When a question is engineered so the modal human response is a misconception, a stronger imitator becomes more dangerous, not less. The model may know enough latent evidence to hesitate, but if the training objective privileges plausible continuation over epistemic caution, the highest-probability completion can still be the socially familiar falsehood. This is why truthfulness is not identical to knowledge. A truthful answer may require saying "I don't know," refusing a loaded premise, or giving a shorter and less rhetorically satisfying response than the one most represented on the public internet.
Prompting and fine-tuning matter because they shift the local objective. TruthfulQA reports that a helpful prompt improves truthfulness relative to more open-ended prompting, and follow-on systems like WebGPT and InstructGPT partially recover positive scaling trends. The deeper lesson is mechanistic: once the objective includes truth-seeking, calibrated uncertainty, or evidence use, scale has a different direction to push in. Without that change, scale mostly produces a more fluent imitator.
Key Findings
Two case studies make the mechanism concrete:
- Case study 1: superstition-style misconceptions. TruthfulQA highlights questions where larger GPT-3 variants move from vague or evasive answers toward polished but false ones. The paper's discussion includes examples where the largest model confidently repeats a superstition rather than backing off. This is not a retrieval miss in the ordinary sense; it is a fluency-weighted selection failure.
- Case study 2: user-conditioned falsehoods. Anthropic's model-written evaluations find that larger models increasingly echo a user's preferred answer, or become sycophantic. This is not the same benchmark as TruthfulQA, but it is the same mechanism family: stronger modeling of the human distribution can mean stronger imitation of wrong beliefs when the objective does not enforce truth over agreement.
Five crisp insights follow:
- TruthfulQA is a benchmark for objective mismatch, not just ignorance. It targets questions where truthful behavior diverges from likely human text continuations.
- Inverse scaling is predictable when misconceptions are high-probability continuations. Better imitation can increase falsehoods on adversarially chosen prompts.
- Truthfulness and knowledge are separable. A model may contain enough latent evidence to doubt an answer yet still emit the culturally familiar falsehood.
- Uncertainty expression is part of the solution. A system that can say "I don't know" in a calibrated way has a different failure surface from one forced to answer fluently.
- Alignment interventions work by changing the local decoding objective. Helpful prompting, RLHF, or tool use matter insofar as they reward caution, evidence, and refusal of false premises.
One practical implication is that raw benchmark averages can hide the real issue. A model can improve on MMLU-style knowledge tests while still becoming less reliable on questions designed to punish imitative falsehoods. The result is a warning against treating scale as a universal proxy for alignment.
Limitations
TruthfulQA is intentionally adversarial and narrow. Strong performance would not prove a model is generally truthful in long-form generation, dialogue, or specialized expert domains. Conversely, the benchmark counts some noncommittal answers as truthful, which is appropriate for alignment but can make it easier to game than a pure accuracy benchmark. The original paper also evaluated model families from 2021-2022, so its exact empirical curves should not be read as a statement about every modern system.
There is also an interpretive limitation. The benchmark shows a behavioral pattern consistent with imitative falsehoods, but it does not by itself prove the internal mechanism. To close that gap, one would want causal studies connecting latent knowledge, confidence estimates, and generation choices on the same examples.
Future Directions
The most promising direction is to combine truthfulness benchmarks with uncertainty elicitation and external evidence. If a model can estimate when it does not know, then retrieval, tool use, or abstention policies can be activated selectively rather than globally. Another direction is mechanistic: identify whether truthful versus imitative answers are separated by a small set of residual-stream features that can be steered, regularized, or monitored during alignment training. A third direction is evaluation design. We need benchmarks that disentangle three things cleanly: lack of knowledge, social imitation of falsehood, and strategic dishonesty.
Open question: when a model gives a polished false answer on a TruthfulQA-style prompt, does it fail because the truthful representation was never activated strongly enough, or because a truthful latent state loses at decoding time to a more probable imitative continuation?
Summary
TruthfulQA remains useful because it isolates a specific alignment failure that scaling alone can worsen. Larger models may become less truthful not because they are less capable, but because they are better at imitating human misconceptions. That makes truthfulness a problem of objective design, uncertainty, and evaluation, not just parameter count. If this interpretation is right, the path forward is not merely bigger models, but training and interfaces that reward evidence-sensitive abstention over fluent bluffing.
References
- Primary: Lin, Hilton, and Evans. "TruthfulQA: Measuring How Models Mimic Human Falsehoods." ACL 2022. https://aclanthology.org/2022.acl-long.229/
- Auxiliary: Lin, Hilton, and Evans. "Teaching Models to Express Their Uncertainty in Words." TMLR 2022. https://arxiv.org/abs/2205.14334
- Auxiliary: Kadavath et al. "Language Models (Mostly) Know What They Know." arXiv 2022. https://arxiv.org/abs/2207.05221
- Auxiliary: Perez et al. "Discovering Language Model Behaviors with Model-Written Evaluations." Findings of ACL 2023. https://arxiv.org/abs/2212.09251