REVIEW 4 major objections 5 minor 42 references
Probing the Geometry of Truth: Consistency and Generalization of Truth Directions in LLMs Across Logical Transformations and Question Answering Tasks
T0 review · 4 major / 5 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read This paper claims that the 'truth direction' — a linear feature separating true from false statements in an LLM's internal activations — is not universal but emerges only in capable models, where simple probes can find it and use it…
desk verdict A useful empirical study with a real generalization result, but the capability claim rests on an AUROC=0 interpretation that needs fixing before it lands. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the truth direction: the normal vector of a hyperplane fitted to the activations of the final token position in a chosen decoder layer of the LLM, so that true and false statements fall on opposite sides. The paper identifies the layer by the ratio of between-class to within-class variance of true and false activations across layers, and instantiates the probe as logistic regression, a margin-maximizing linear SVM with Platt scaling, the mass-mean direction, and an MLP baseline. This machinery matters because it lets the authors separate 'does the model represent truth linearly?' from 'did the probe find the direction?', and then test transfer by training on one syntactic form (declarative atomic statements) and evaluating on another (negations, conjunctions, disjunctions, question-answer pairs, and context-grounded passages).
What would settle it
Retrain the probes on the weak models that scored near zero (for example, Llama-2-7B on most topics), then flip the sign of each probe's decision boundary before testing on negated statements; if a substantial fraction of topics then exceed AUROC of 0.5, the reported absence of a consistent truth direction in weak models would be overturned. Conversely, if the flipped probes also stay at chance, the paper's interpretation is confirmed.
Extended reading notes
Core claim
The paper's central claim is that a consistent truth direction is a property of the target model, not of the probe: across a model ladder from Llama-2-7B to Llama-3.1-70B-Instruct, the ability of truthfulness probes trained on affirmative statements to classify their logical negations rises with general model capability, reaching success on all six knowledge topics only for the most capable instruction-tuned model. The authors therefore conclude that earlier reported generalization failures reflect an internal inconsistency in weaker LLMs, not a limitation of probing technique. They further report that probes trained on atomic factual statements transfer to logical conjunctions and disjunctions, to multiple-choice and short-form QA (MMLU, TriviaQA), to few-shot in-context settings even when exemplars are wrong, and to context-grounded tasks (SciQ, BoolQ, XSum), and that a randomly initialized model exhibits no such direction, showing the direction is a product of pretraining. Finally, they demonstrate selective QA: keeping only answers the probe scores as true raises accuracy from 55.29% to 64.06% on the accepted subset.
Load-bearing premise
The load-bearing assumption is the scoring rule: a probe is credited with finding a truth direction only when its AUROC exceeds 0.5, whereas a score near zero is read as the absence of structure; if a near-zero score instead reflects a consistently reversed direction, the conclusion that weaker models lack consistent truth directions would not follow from the data.
Editorial extensions
If this is right
- Consistent truth directions scale with capability: probes generalize across negation on zero of six topics for Llama-2-7B, four for Llama-2-13B-Chat and Llama-3.1-8B-Instruct, five for Llama-3.1-70B, and all six for Llama-3.1-70B-Instruct.
- Probe design becomes secondary in capable models: differences among LR, MLP, SVM, and MM probes are negligible from Llama-2-13B-Chat onward, so sophisticated probing is not required to find a distinctly represented truth direction.
- A single probe trained on atomic factual statements transfers to logical conjunctions and disjunctions, multiple-choice and short-form QA, few-shot in-context learning (even with false exemplars), and context-grounded hallucination detection.
- Truthfulness probes can be used for selective QA: filtering sampled answers by probe confidence raises accuracy from 55.29% to 64.06% on the accepted subset, showing a path to improving user trust in LLM-generated answers.
- The direction is not a probe artifact: a randomly initialized Llama-3.1-8B yields near-chance AUROC (0.50 to 0.58) on the same probing pipeline, whereas the pretrained model reaches 1.0.
Reading between the lines
- A testable extension the paper does not run: check whether the near-zero AUROC values it logs for weak models (Figure 3) correspond to a consistently sign-flipped truth direction; if flipping the probe's decision boundary recovers above-chance AUROC, the claim that weak models lack consistent truth directions would need revision.
- If truth directions are a capability-linked emergent property, probing could serve as a lightweight, task-independent proxy for model maturity, potentially predicting when a model is amenable to latent-knowledge elicitation without running full benchmark suites.
- The authors' dichotomy of AUROC above versus at or below 0.5 discards geometric information: a strong anti-correlation is still strong linear structure, just with the wrong sign, so the geometry of truth may be present in weak models but not aligned with the statement's surface polarity.
- The demonstrated transfer to context-grounded tasks suggests the same readout generalizes to 'grounded correctness' (faithfulness to provided context) beyond parametric factuality; this is worth testing directly on long-form generation, which the authors note they did not do.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper investigates whether LLMs encode truthfulness as a linear 'truth direction' in the residual stream. The authors train four probes (logistic regression, MLP, linear SVM, mass-mean) on activations from affirmative factual statements across six topics and test generalization to logical negations, conjunctions, disjunctions, multiple-choice and short-form QA (MMLU, TriviaQA), and context-grounded tasks (SciQ, BoolQ, XSum). They report that generalization improves with model capability, that simple linear probes are sufficient to identify truth directions, and that probes transfer across syntax and task format. They also present a selective-QA application where an SVM probe filters candidate answers. The paper includes a randomized-model control and makes code publicly available.
Significance. If the findings hold, they would substantially strengthen the evidence for a linear truthfulness representation in capable LLMs and extend the scope of truth-direction probing from atomic statements to realistic QA and contextual settings. The paper's strengths include the use of held-out external benchmarks, a randomized-weight control showing that probes do not manufacture structure, comparison of multiple probe families, and a practical selective-QA demonstration. However, the central claims about model capability and generalization rest on specific design choices and interpretations that need additional scrutiny.
major comments (4)
- [4.3.2 / Figure 3] AUROC values of 0 for Llama-2-7B on several topics are interpreted as evidence that weaker models lack a consistent truth direction, but an AUROC of 0 is perfect anti-correlation, i.e., a perfectly consistent linear ordering with reversed sign, not the absence of linear structure. The authors should report the distribution of AUROC values, the sign-flipped metric (1 - AUROC), or the angle between the affirmative and negative probe directions to distinguish 'no consistent direction' from 'consistent but sign-inverted direction.' Without this, the conclusion that consistent truth directions do not appear in weaker models is unsupported.
- [4.1 / layer selection] The optimal layer index is selected using the between-to-within-class variance ratio computed on statements that include affirmations, negations, conjunctions, and disjunctions, as stated in Section 4.1 and detailed in Appendix F.2. Because the same logical transformations are later used as test sets in Sections 4.3 and 4.4, the layer selection is informed by the test transformations, which can inflate generalization estimates. The authors should either select layers using only affirmative statements or show that conclusions are robust across layers.
- [Figures 3, 4, 6] The main generalization results in Figures 3, 4, and 6 are presented without error bars or confidence intervals, although the text reports averaging over three trials. Several AUROC values are close to the 0.5 threshold (e.g., 0.53 in Figure 3 for the facts topic, and 0.58-0.61 in Figure 4 for disjunctions), so without variance estimates the claim of successful generalization is not statistically supported. The authors should report per-trial values, standard errors, or a significance test.
- [4.3.2 / Conclusions] The paper's central claim that 'consistent truth directions only emerge in capable LLMs and not in weaker ones' is supported by a cross-family comparison across Llama-2, Llama-3.1, and Mistral models that differ in architecture, training data, and instruction tuning, while capability is inferred from external benchmarks rather than isolated as a variable. The authors should temper the causal wording or provide a within-family size comparison (e.g., Llama-3.1-8B vs. Llama-3.1-70B) as the primary evidence, and explicitly acknowledge confounds.
minor comments (5)
- [4.7] The selective-QA experiment reports an overall accuracy of 55.29% and a selected-subset accuracy of 64.06% while retaining 80.26% of answers; the paper should discuss the precision-recall trade-off and whether the improvement is statistically significant.
- [3.2] The word 'hyperplace' should be 'hyperplane'.
- [4.2] The randomized-model control is reported for only one dataset (animal_class) and one layer; a brief justification of why this suffices would help.
- [F.1] The use of float8 quantization for Llama-3.1-70B may alter activations; the authors should comment on the potential impact on probe performance.
- [Figure 3] The caption does not define M0-M7; the text should state the model ordering explicitly.
Circularity Check
Layer selection peeks at the target transformations, but central probe-weight predictions are trained only on affirmative statements and are benchmarked externally; no substantial circularity.
-
fitted input called prediction
[Section 4.1 (Layer Selection) and Appendix F.2]
"By plotting the ratio of between-class to within-class variance across decoder layers for a range of topic-specific datasets, we identify the optimal layer as the one with the highest ratio. ... The data used for plotting is the collection of both affirmative and negative atomic statements covering all the six topics, as well as their logical conjunctions and disjunctions."
The decoder layer is a component of the probe representation, and it is selected using variance ratios computed on the same negative, conjunction, and disjunction statements that later serve as the test sets for the generalization claims. Reported AUROCs for negation/conjunction/disjunction generalization are therefore measured at a layer chosen with access to those exact target transformations, so the result is a partly in-sample hyperparameter choice rather than a fully out-of-sample prediction. This is a selection bias, not an equivalence: probe weights are still fit only to affirmative atomic statements, and results vary by model and topic, so the central capability-dependent pattern is not forced.
full rationale
The main empirical loop is not circular: truthfulness probes are trained on labeled atomic factual statements and evaluated on unseen negations, logical compounds, and external benchmarks (MMLU, TriviaQA, SciQ, BoolQ, XSum) without fitting to those test labels. The randomized-model control confirms that probes cannot manufacture a truth direction from random activations, and the external benchmark results provide independent evidence for RQ3. The only notable circularity-adjacent step is the layer-selection procedure in Section 4.1: the variance-ratio criterion is applied to statements that include negations, conjunctions, and disjunctions, and the resulting fixed layer is then used for all generalization experiments. This gives the negation/compound generalization results a mild selection bias, but because the probe weights remain trained solely on affirmative statements, the consistency and generalization claims retain independent content. The paper contains no load-bearing self-citations; the cited prior work supplies data and baselines rather than the paper's conclusions. The AUROC=0 readings in Figure 3 raise an interpretive concern about sign-flipped directions, but that is a correctness/robustness matter, not circularity. Overall score 2.
Assumptions & free parameters
free parameters (3)
- optimal layer index per model =
12 (Llama-3.1-8B), 13 (8B-Instruct), 33 (70B-Instruct), etc.
- SVM nu parameter (NuSVC) =
0.5
- Selective QA confidence threshold =
0.5
assumptions (4)
- domain assumption The final-token hidden state of a chosen layer is a sufficient representation for probing binary truthfulness.
- domain assumption AUROC > 0.5 indicates a successful generalization of a truthfulness probe, and AUROC <= 0.5 indicates absence of a consistent truth direction.
- domain assumption Factual statement datasets and their logical transformations are correctly labeled and preserve truth values.
- ad hoc to paper The variance-ratio based layer selection identifies a single optimal layer for all tasks.
Cite this review
Pith. "Pith review of Probing the Geometry of Truth: Consistency and Generalization of Truth Directions in LLMs Across Logical Transformations and Question Answering Tasks." pith.science (2026). https://pith.science/paper/POZR2MJ3
@misc{pith2026250600823,
author = {Pith},
title = {Pith review of: Probing the Geometry of Truth: Consistency and Generalization of Truth Directions in LLMs Across Logical Transformations and Question Answering Tasks},
year = {2026},
howpublished = {\url{https://pith.science/paper/POZR2MJ3}},
note = {Machine review of arXiv:2506.00823}
}
read the original abstract
Large language models (LLMs) are trained on extensive datasets that encapsulate substantial world knowledge. However, their outputs often include confidently stated inaccuracies. Earlier works suggest that LLMs encode truthfulness as a distinct linear feature, termed the "truth direction", which can classify truthfulness reliably. We address several open questions about the truth direction: (i) whether LLMs universally exhibit consistent truth directions; (ii) whether sophisticated probing techniques are necessary to identify truth directions; and (iii) how the truth direction generalizes across diverse contexts. Our findings reveal that not all LLMs exhibit consistent truth directions, with stronger representations observed in more capable models, particularly in the context of logical negation. Additionally, we demonstrate that truthfulness probes trained on declarative atomic statements can generalize effectively to logical transformations, question-answering tasks, in-context learning, and external knowledge sources. Finally, we explore the practical application of truthfulness probes in selective question-answering, illustrating their potential to improve user trust in LLM outputs. These results advance our understanding of truth directions and provide new insights into the internal representations of LLM beliefs. Our code is public at https://github.com/colored-dye/truthfulness_probe_generalization
Figures
Figures from the paper (13 more)
Reference graph
Works this paper leans on
-
[1]
Josh Achiam, Steven Adler, Sandhini Agarwal, Lama Ahmad, Ilge Akkaya, Florencia Leoni Aleman, Diogo Almeida, Janko Altenschmidt, Sam Altman, Shyamal Anadkat, et al. 2023. Gpt-4 technical report. arXiv preprint arXiv:2303.08774
arXiv 2023
-
[2]
Amos Azaria and Tom Mitchell. 2023. The internal state of an llm knows when it's lying. arXiv preprint arXiv:2304.13734
arXiv 2023
-
[3]
Emily M Bender, Timnit Gebru, Angelina McMillan-Major, and Shmargaret Shmitchell. 2021. On the dangers of stochastic parrots: Can language models be too big? In Proceedings of the 2021 ACM conference on fairness, accountability, and transparency, pages 610--623
2021
-
[4]
Lennart B \"u rger, Fred A Hamprecht, and Boaz Nadler. 2024. Truth is universal: Robust detection of lies in llms. arXiv preprint arXiv:2407.12831
arXiv 2024
-
[5]
Collin Burns, Haotian Ye, Dan Klein, and Jacob Steinhardt. 2022. Discovering latent knowledge in language models without supervision. arXiv preprint arXiv:2212.03827
arXiv 2022
-
[6]
Paul Christiano, Ajeya Cotra, and Mark Xu. 2021. Eliciting latent knowledge: How to tell if your eyes deceive you. URL https://docs. google. com/document/d/1WwsnJQstPq91\_ Yh-Ch2XRL8H\_EpsnjrC1dwZXR37PC8/edit\# heading= h. jrzi4atzacns
work page 2021
-
[7]
Christopher Clark, Kenton Lee, Ming-Wei Chang, Tom Kwiatkowski, Michael Collins, and Kristina Toutanova. 2019. https://doi.org/10.18653/v1/N19-1300 B ool Q : Exploring the surprising difficulty of natural yes/no questions . In Proceedings of the 2019 Conference of the North A merican Chapter of the Association for Computational Linguistics: Human Language...
-
[8]
Corinna Cortes and Vladimir Vapnik. 1995. Support-vector networks. Machine learning, 20(3):273--297
1995
Show all 42 references
-
[9]
Abhimanyu Dubey, Abhinav Jauhri, Abhinav Pandey, Abhishek Kadian, Ahmad Al-Dahle, Aiesha Letman, Akhil Mathur, Alan Schelten, Amy Yang, Angela Fan, et al. 2024. The llama 3 herd of models. arXiv preprint arXiv:2407.21783
2024 arXiv
-
[10]
Owain Evans, Owen Cotton-Barratt, Lukas Finnveden, Adam Bales, Avital Balwit, Peter Wills, Luca Righetti, and William Saunders. 2021. Truthful ai: Developing and governing ai that does not lie. arXiv preprint arXiv:2110.06674
2021 arXiv
-
[11]
Danny Halawi, Jean-Stanislas Denain, and Jacob Steinhardt. 2023. Overthinking the truth: Understanding how language models process false demonstrations. arXiv preprint arXiv:2307.09476
2023 arXiv
-
[12]
Jinwen He, Yujia Gong, Zijin Lin, Yue Zhao, Kai Chen, et al. 2024. Llm factoscope: Uncovering llms’ factual discernment through measuring inner states. In Findings of the Association for Computational Linguistics ACL 2024, pages 10218--10230
2024
-
[13]
Dan Hendrycks, Collin Burns, Steven Basart, Andy Zou, Mantas Mazeika, Dawn Song, and Jacob Steinhardt. 2020. Measuring massive multitask language understanding. arXiv preprint arXiv:2009.03300
2020 arXiv
-
[14]
Ziwei Ji, Nayeon Lee, Rita Frieske, Tiezheng Yu, Dan Su, Yan Xu, Etsuko Ishii, Ye Jin Bang, Andrea Madotto, and Pascale Fung. 2023. Survey of hallucination in natural language generation. ACM Computing Surveys, 55(12):1--38
2023
-
[15]
Albert Q Jiang, Alexandre Sablayrolles, Arthur Mensch, Chris Bamford, Devendra Singh Chaplot, Diego de las Casas, Florian Bressand, Gianna Lengyel, Guillaume Lample, Lucile Saulnier, et al. 2023. Mistral 7b. arXiv preprint arXiv:2310.06825
2023 arXiv
-
[16]
Mandar Joshi, Eunsol Choi, Daniel S Weld, and Luke Zettlemoyer. 2017. Triviaqa: A large scale distantly supervised challenge dataset for reading comprehension. In Proceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), p...
2017
-
[17]
Nitish Joshi, Javier Rando, Abulhair Saparov, Najoung Kim, and He He. 2024. Personas as a way to model truthfulness in language models. In Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing, pages 6346--6359
2024
-
[18]
Saurav Kadavath, Tom Conerly, Amanda Askell, Tom Henighan, Dawn Drain, Ethan Perez, Nicholas Schiefer, Zac Hatfield-Dodds, Nova DasSarma, Eli Tran-Johnson, et al. 2022. Language models (mostly) know what they know. arXiv preprint arXiv:2207.05221
2022 arXiv
-
[19]
Diederik P Kingma. 2014. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980
2014 arXiv
-
[20]
Abhinav Kumar, Chenhao Tan, and Amit Sharma. 2022. Probing classifiers are unreliable for concept removal and detection. Advances in Neural Information Processing Systems, 35:17994--18008
2022
-
[21]
Bruce W Lee, Benedict Florance Arockiaraj, and Helen Jin. 2023. Linguistic properties of truthful response. In Proceedings of the 3rd Workshop on Trustworthy Natural Language Processing (TrustNLP 2023), pages 135--140
2023
-
[22]
Benjamin A Levinstein and Daniel A Herrmann. 2024. Still no lie detector for language models: Probing empirical and conceptual roadblocks. Philosophical Studies, pages 1--27
2024
-
[23]
Kenneth Li, Oam Patel, Fernanda Vi \'e gas, Hanspeter Pfister, and Martin Wattenberg. 2023. Inference-time intervention: Eliciting truthful answers from a language model. Advances in Neural Information Processing Systems, 36:41451--41530
2023
-
[24]
Stephanie Lin, Jacob Hilton, and Owain Evans. 2022. Truthfulqa: Measuring how models mimic human falsehoods. In Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 3214--3252
2022
-
[25]
Dong C Liu and Jorge Nocedal. 1989. On the limited memory bfgs method for large scale optimization. Mathematical programming, 45(1):503--528
1989
-
[26]
Kevin Liu, Stephen Casper, Dylan Hadfield-Menell, and Jacob Andreas. 2023. Cognitive dissonance: Why do language model outputs disagree with internal representations of truthfulness? In Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing, pag...
2023
-
[27]
Monte MacDiarmid, Timothy Maxwell, Nicholas Schiefer, Jesse Mu, Jared Kaplan, David Duvenaud, Sam Bowman, Alex Tamkin, Ethan Perez, Mrinank Sharma, Carson Denison, and Evan Hubinger. 2024. https://www.anthropic.com/news/probes-catch-sleeper-agents Simple probes can catch sleep...
2024
-
[28]
Mat \'e o Mahaut, Laura Aina, Paula Czarnowska, Momchil Hardalov, Thomas M \"u ller, and Lluis Marquez. 2024. https://doi.org/10.18653/v1/2024.acl-long.250 Factual confidence of LLM s: on reliability and robustness of current estimators . In Proceedings of the 62nd Annual Meet...
2024 doi
-
[29]
Alex Mallen and Nora Belrose. 2023. Eliciting latent knowledge from quirky language models. arXiv preprint arXiv:2312.01037
2023 arXiv
-
[30]
Samuel Marks and Max Tegmark. 2023. The geometry of truth: Emergent linear structure in large language model representations of true/false datasets. arXiv preprint arXiv:2310.06824
2023 arXiv
-
[31]
Joshua Maynez, Shashi Narayan, Bernd Bohnet, and Ryan McDonald. 2020. https://doi.org/10.18653/v1/2020.acl-main.173 On faithfulness and factuality in abstractive summarization . In Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics, pages 1...
2020 doi
-
[32]
Cohen, and Mirella Lapata
Shashi Narayan, Shay B. Cohen, and Mirella Lapata. 2018. Don't give me the details, just the summary! topic-aware convolutional neural networks for extreme summarization. ArXiv, abs/1808.08745
2018 arXiv
-
[33]
Lorenzo Pacchiardi, Alex James Chan, S \"o ren Mindermann, Ilan Moscovitz, Alexa Yue Pan, Yarin Gal, Owain Evans, and Jan M Brauner. 2023. How to catch an ai liar: Lie detection in black-box llms by asking unrelated questions. In The Twelfth International Conference on Learnin...
2023
-
[34]
Pedregosa, G
F. Pedregosa, G. Varoquaux, A. Gramfort, V. Michel, B. Thirion, O. Grisel, M. Blondel, P. Prettenhofer, R. Weiss, V. Dubourg, J. Vanderplas, A. Passos, D. Cournapeau, M. Brucher, M. Perrot, and E. Duchesnay. 2011. Scikit-learn: Machine learning in P ython. Journal of Machine L...
2011
-
[35]
J Platt. 1999. Probabilistic outputs for svms and comparisons to regularized likehood methods. Advances in Large Margin Classifiers
1999
-
[36]
CH-Wang Sky, Benjamin Van Durme, Jason Eisner, and Chris Kedzie. 2024. Do androids know they’re only dreaming of electric sheep? In Findings of the Association for Computational Linguistics ACL 2024, pages 4401--4420
2024
-
[37]
Hugo Touvron, Louis Martin, Kevin Stone, Peter Albert, Amjad Almahairi, Yasmine Babaei, Nikolay Bashlykov, Soumya Batra, Prajjwal Bhargava, Shruti Bhosale, et al. 2023. Llama 2: Open foundation and fine-tuned chat models. arXiv preprint arXiv:2307.09288
2023 arXiv
-
[38]
A Vaswani. 2017. Attention is all you need. Advances in Neural Information Processing Systems
2017
-
[39]
Johannes Welbl, Nelson F Liu, and Matt Gardner. 2017. Crowdsourcing multiple choice science questions. arXiv preprint arXiv:1707.06209
2017 arXiv
-
[40]
Zhenhong Zhou, Haiyang Yu, Xinghua Zhang, Rongwu Xu, Fei Huang, and Yongbin Li. 2024. https://aclanthology.org/2024.findings-emnlp.139 How alignment and jailbreak work: Explain LLM safety through intermediate hidden states . In Findings of the Association for Computational Lin...
2024
-
[41]
online" 'onlinestring :=
ENTRY address archivePrefix author booktitle chapter edition editor eid eprint eprinttype howpublished institution journal key month note number organization pages publisher school series title type volume year doi pubmed url lastchecked label extra.label sort.label short.list...
-
[42]
write newline
" write newline "" before.all 'output.state := FUNCTION n.dashify 't := "" t empty not t #1 #1 substring "-" = t #1 #2 substring "--" = not "--" * t #2 global.max substring 't := t #1 #1 substring "-" = "-" * t #2 global.max substring 't := while if t #1 #1 substring * t #2 gl...
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Sign in to comment.