The Error-Awareness Transfer Collapse Is Largely a Readout Artifact
≈ $13.71 compute
Download paper (PDF, NeurIPS format)
Internal Wrongness Directions Are Near-Orthogonal Across Domains and Orthogonally Realignable in Instruction-Tuned LLMs
Ephraiem Sarabamoun
Abstract
Linear probes can read a “wrongness” signal from the residual stream of a language model: given a factual statement, a probe on hidden activations separates correct from incorrect statements with high accuracy (Azaria and Mitchell, 2023; Marks and Tegmark, 2023; Burns et al., 2022). A puzzle for this line of work is the transfer collapse. In a prior study of token-output features, a wrongness probe trained on arithmetic statements barely transferred to capital-city statements on Qwen2.5-7B-Instruct. We ask whether that collapse reflects a genuine divergence of the internal wrongness representation across content domains, or merely a rotation of a shared direction that an orthogonal map can undo. Extracting residual-stream activations from Qwen2.5-7B-Instruct and Llama-3.1-8B-Instruct over four fact domains, our robust finding is that the collapse is mostly not an internal phenomenon. In the full residual stream the arithmetic-trained probe already transfers well to capitals with no alignment of any kind (AUC 0.88 on Qwen, 0.98 on Llama), far above the documented token-level number, so the strong collapse seen in next-token features reflects the readout frame more than a divergence of the underlying representation. We then ask whether the residual misalignment that does remain is a rotation. The per-domain difference-of-means wrongness directions are mutually near-orthogonal (absolute cosine at most 0.13 across all twelve ordered domain pairs on Qwen), and a degrees-of-freedom-limited orthogonal rotation, fit by Procrustes on a held-out target split, realigns them and recovers near-ceiling transfer, including where raw transfer is below chance. We treat this rotation result as suggestive rather than established: the alignment is supervised and fit per domain pair, the recovering rotation maximizes the very cosine we then report, and the headline target (capitals) is near-perfectly separable, so a fitted orthogonal map can succeed for reasons short of a genuinely shared geometry. The random-rotation null (centered at chance, wide upper tail) and the partial recovery on the harder, non-saturated arithmetic target temper the claim. The contribution we stand behind is the readout-artifact result; the rotation account is a hypothesis the data are consistent with but do not prove.
1. Introduction
A growing body of interpretability work shows that language models linearly encode whether a statement is true or false, and that this internal signal can be read by a probe (Burns et al., 2022; Marks and Tegmark, 2023; Azaria and Mitchell, 2023) and even steered at inference time (Li et al., 2023), a representation-level handle that generalizes across many concepts (Zou et al., 2023). The behavioral counterpart is well documented: models are partially calibrated about their own correctness (Kadavath et al., 2022), and output-level methods can flag likely hallucinations (Manakul et al., 2023). If a single wrongness direction were stable across content domains, error-aware monitoring would be cheap and general. The transfer collapse threatens that hope. A probe trained to detect arithmetic errors, in a prior study of next-token features, transferred poorly to capital-city errors on Qwen2.5-7B-Instruct, while a sibling replication found the collapse did not reproduce on Llama-3.1-8B-Instruct. Whether the collapse is a property of the model’s internal representation or of the particular readout used has not been settled.
We separate those two possibilities. The hypothesis under test is geometric: that the wrongness signal lives on a direction that is shared across domains up to an orthogonal rotation, so that the apparent collapse is a frame mismatch rather than the absence of a common signal. This framing follows the representation-alignment tradition, where two embedding spaces that look incomparable are related by an orthogonal map recoverable with a small seed correspondence (Mikolov et al., 2013; Smith et al., 2017; Conneau et al., 2017), and where representations across models and modalities relate by near-isometries (Moschella et al., 2022). The broader claim that representations converge toward a shared form across systems makes such alignability plausible a priori (Huh et al., 2024). We instantiate that idea inside a single model, across content domains, for the safety-relevant wrongness feature.
2. Related work
The linear representation hypothesis holds that high-level concepts correspond to directions in activation space, with a metric in which cosine and orthogonal maps are the natural tools (Park et al., 2023). Concrete linear features have been found for truth (Marks and Tegmark, 2023), sentiment (Tigges et al., 2023), and spatial and temporal attributes (Gurnee and Tegmark, 2023), and layerwise affine readouts expose where such content becomes available with depth (Belrose et al., 2023). On the safety side, the gap between what a model internally computes and what it verbalizes motivates reading signals from activations rather than from text (Turpin et al., 2023), and faithfulness of stated reasoning is itself measurable and often incomplete (Lanham et al., 2023). The question of representation similarity up to invertible or orthogonal transformations is itself a mature topic (Kornblith et al., 2019); our contribution is to apply the orthogonal-only version of that question to a specific, behaviorally meaningful feature and to ask whether a rotation alone explains an observed transfer failure. We use Qwen2.5-7B-Instruct (Yang et al., 2024) and Llama-3.1-8B-Instruct (Dubey et al., 2024), the two models at the center of the prior collapse and no-collapse findings.
3. Method
We use four balanced fact datasets from the parent error-awareness project: arithmetic (subsampled to 1500 balanced statements), capitals (360), currency (216), and language (242). Each statement is wrapped in the original commit prompt, “Finish the statement by writing only a period.”, followed by the statement. We run each model with output of hidden states and record the residual-stream vector at the final input token for a fixed set of six evenly spaced layers. A statement is labeled wrong when it is factually incorrect.
For each model, layer, and ordered pair of a source and target domain we compute five quantities. Within-domain decodability is the five-fold out-of-fold AUC of a logistic-regression probe in the full residual space, which confirms that wrongness is linearly present in each domain. Raw transfer in the full space trains the probe on all source statements and evaluates it on the target, the most direct measurement of the collapse. The remaining quantities live in a shared low-dimensional space: we mean-center each domain, project both onto a common thirty-dimensional principal-component basis fit on the pooled centered activations, and scale each component to unit variance. Working in thirty dimensions deliberately limits the degrees of freedom of the alignment so that an orthogonal map cannot simply relearn a free target probe.
The orthogonal alignment is fit by Procrustes, the same orthogonal-map solution used to align embedding spaces with a seed correspondence (Smith et al., 2017). We split the target domain into a sixty-percent fit split and a disjoint forty-percent test split, stratified by label. Correspondence for the Procrustes fit comes from class-centroid anchors: we draw three hundred bootstrap centroids of correct statements and three hundred of incorrect statements in the source domain and in the target fit split, and the orthogonal matrix that best maps the source anchors onto the target anchors is the rotation. This plays the role of the seed dictionary in cross-lingual alignment (Conneau et al., 2017), using class identity rather than word identity. We then evaluate the source-trained probe on the held-out target test split after rotating the test points into the source frame. Three comparisons make the result interpretable: a within-target ceiling (a probe trained on the target fit split and tested on the target test split), a random-rotation null (the same source probe applied through two hundred random orthogonal matrices), and the raw thirty-dimensional transfer with no rotation. All four arms are evaluated on the identical held-out target test set. Confidence intervals are percentile bootstrap with two thousand resamples at seed 42, and a recompute script rebuilds every reported number from per-example probe scores.
4. Results

The headline case is the documented one: the arithmetic-trained probe applied to capital-city statements on Qwen2.5-7B-Instruct, shown in Figure 1 at the model’s most decodable layer. Within capitals the signal is essentially perfect (AUC 1.000 ceiling), and within arithmetic it is strong (out-of-fold AUC 0.982). Raw transfer in the full residual stream reaches AUC 0.883, already far above chance, which is the first sign that the internal representation does not collapse the way the token-level readout does. In the thirty-dimensional shared space raw transfer falls to 0.633, but the fitted orthogonal rotation lifts it back to 0.999, indistinguishable from the within-capitals ceiling, for a recovery fraction of 0.998. The random-rotation null is centered at chance (mean 0.488) but has a wide upper tail (95 percent interval 0.032 to 0.958); the fitted rotation sits above that tail.

The geometry is shown in Figure 5, with an important caveat about what it can and cannot establish. Figure 5 plots the cosine between the source and target difference-of-means wrongness directions for every Qwen domain pair, before and after the rotation. Raw cosines are tiny, ranging from negative 0.002 to 0.13, so the wrongness directions for arithmetic, capitals, currency, and language are mutually almost orthogonal. After the fitted rotation the cosines rise to between 0.96 and 0.997. We stress that this post-rotation alignment is not independent evidence: the Procrustes map is fit to align these directions, so high cos_proc is close to what the fit optimizes and should be read as a consistency check, not as a discovery. The load-bearing observation in the figure is the raw column, that the unrotated directions are nearly orthogonal across domains while each domain is decoded almost perfectly on its own.

Depth and the sign-flip signature reinforce the reading. Figure 2 traces the three thirty-dimensional arms across layers for both models. Raw transfer is erratic and at several layers drops below chance, for example to AUC 0.012 at Qwen layer 21 and to 0.055 and 0.095 for two Llama capital-to-currency and capital-to-language pairs at layer 13. Below-chance transfer is not noise; it is a direction pointing the wrong way, the behavior expected when the target direction is a near-inversion of the source. In every such case the fitted rotation recovers near-perfect transfer (0.9998 at Qwen layer 21), confirming that the failure was orientation, not absence of signal. Across pairs and depth the Procrustes arm tracks the within-target ceiling closely.

The pattern generalizes beyond the headline pair. Figure 3 shows the recovery fraction for all twelve ordered Qwen domain pairs at the headline layer; recovery is near one for most pairs, with the only soft spots being transfers into arithmetic, where the target ceiling itself is lower (about 0.97) and the recovered AUC reaches roughly 0.74 to 0.82.

Figure 4 contrasts the two models. Llama-3.1-8B-Instruct, the model whose token-level collapse did not replicate, shows higher raw full-space transfer (0.977) than Qwen as expected, and the same near-complete orthogonal recovery (Procrustes AUC 0.999, recovery fraction 0.993). The two models agree on the central claim: whatever cross-domain misalignment exists in the wrongness representation is, to a close approximation, a rotation.
5. Discussion and limitations
Two conclusions follow, stated at the altitude the evidence supports. The transfer collapse documented at the token-output level is mostly not an internal phenomenon: in the full residual stream the arithmetic wrongness probe transfers to capitals at AUC 0.88 to 0.98, so the strong collapse seen in next-token features reflects the readout frame more than a divergence of the underlying representation (Manakul et al., 2023; Turpin et al., 2023). Where residual misalignment does appear, in the compressed shared space and in the near-orthogonal difference-of-means directions, it is well explained by a single orthogonal rotation, consistent with the near-isometry view of related representation spaces (Moschella et al., 2022; Smith et al., 2017).
The rotation account carries real caveats and we list them plainly, because they bound the claim. First, the recovering rotation is supervised: it is fit using held-out target labels through class-centroid anchors, so it shows that an orthogonal map exists and is findable from a modest labeled target sample, not that the shared geometry can be recovered with no target supervision. Second, the rotation is fit separately for each domain pair rather than as a single shared transform, so the result speaks to pairwise alignability, not to one global frame. Third, and most important, the headline target (capitals) is near-perfectly separable, and on such a saturated target a fitted orthogonal map in a compressed thirty-dimensional space can reach ceiling for reasons short of recovering a genuinely shared direction; the recovery is weaker on the non-saturated arithmetic target (recovered AUC 0.74 to 0.82 against a ceiling near 0.97), which is the regime where the test bites and where the rotation account is only partly supported. The controls we ran (orthogonality constraint, thirty-dimensional cap, random-rotation null with chance-centered mean) argue the map is not just any transform, but the stronger tests we did not run would settle it: an unsupervised alignment, a single shared rotation across all pairs, a synthetic-source null whose true direction is known, and a demonstration that the rotation recovers target signal that full-space raw transfer cannot without label leakage. We fixed the shared dimensionality at thirty without sweeping it, used last-token activations under one prompt, and studied two instruction-tuned models in the seven-to-eight billion range. The one observation that does not depend on the alignment, and that we therefore present as the paper’s contribution, is that the arithmetic probe transfers at AUC 0.88 to 0.98 in the full residual stream with no rotation at all, so the documented token-level collapse is largely a readout artifact.
6. Conclusion
The error-awareness transfer collapse, read inside the model rather than at its output, is mostly not an internal divergence: a wrongness probe trained on arithmetic already transfers to other fact domains at high AUC in the full residual stream, so the strong collapse observed in next-token features is largely an artifact of the output readout. A weaker, secondary observation is that the residual misalignment that remains is consistent with a rotation, since the cross-domain wrongness directions are near-orthogonal yet a fitted orthogonal map realigns them; we hold this second claim loosely, because the alignment is supervised, fit per pair, and tested mainly on a saturated target. For error-aware monitoring the practical reading is encouraging: a probe trained in one domain carries usable signal into others without retraining. Whether a single, unsupervised, shared rotation tightens the cross-domain frame further is the natural next step, and the test that would settle the rotation account is recovering signal that full-space transfer cannot, on a non-saturated target, without target-label leakage.
References
- [burns2022discovering] Burns, Collin and Ye, Haotian and Klein, Dan and Steinhardt, Jacob (2022). Discovering Latent Knowledge in Language Models Without Supervision. arXiv:2212.03827.Unsupervised contrast-consistent search recovers a truth direction in activations; anchors the claim that wrongness is linearly represented internally.
- [marks2023geometry] Marks, Samuel and Tegmark, Max (2023). The Geometry of Truth: Emergent Linear Structure in Large Language Model Representations of True/False Datasets. arXiv:2310.06824.Shows true/false statements separate along a linear direction; our wrongness direction is the same object, and we test its cross-domain stability.
- [azaria2023internal] Azaria, Amos and Mitchell, Tom (2023). The Internal State of an LLM Knows When It's Lying. arXiv:2304.13734.Hidden-state probes detect statement falsehood; direct precedent for the residual-stream wrongness probe we transfer across domains.
- [li2023inference] Li, Kenneth and Patel, Oam and Vi\'egas, Fernanda and Pfister, Hanspeter and Wattenberg, Martin (2023). Inference-Time Intervention: Eliciting Truthful Answers from a Language Model. arXiv:2306.03341.Truthfulness is steerable along a small set of directions; motivates treating wrongness as a low-dimensional linear feature.
- [zou2023representation] Zou, Andy and Phan, Long and Chen, Sarah and Campbell, James and Guo, Phillip and Ren, Richard and Pan, Alexander and Yin, Xuwang and Mazeika, Mantas and Dombrowski, Ann-Kathrin and others (2023). Representation Engineering: A Top-Down Approach to AI Transparency. arXiv:2310.01405.Frames concepts including truthfulness as readable and controllable directions; our domain-rotation result is a constraint on how stable such directions are.
- [kadavath2022language] Kadavath, Saurav and Conerly, Tom and Askell, Amanda and Henighan, Tom and Drain, Dawn and Perez, Ethan and Schiefer, Nicholas and Hatfield-Dodds, Zac and DasSarma, Nova and Tran-Johnson, Eli and others (2022). Language Models (Mostly) Know What They Know. arXiv:2207.05221.Models carry calibrated self-knowledge of correctness; the behavioral analogue of the internal wrongness signal we probe.
- [manakul2023selfcheckgpt] Manakul, Potsawee and Liusie, Adian and Gales, Mark JF (2023). SelfCheckGPT: Zero-Resource Black-Box Hallucination Detection for Generative Large Language Models. arXiv:2303.08896.Output-level hallucination detection; contrasts with our finding that the internal signal is more domain-general than the readout suggests.
- [park2023linear] Park, Kiho and Choe, Yo Joong and Veitch, Victor (2023). The Linear Representation Hypothesis and the Geometry of Large Language Models. arXiv:2311.03658.Formalizes linear feature directions and the metric in which they live; grounds our use of cosine and orthogonal maps over difference-of-means directions.
- [gurnee2023language] Gurnee, Wes and Tegmark, Max (2023). Language Models Represent Space and Time. arXiv:2310.02207.Evidence for linear world-feature directions across content domains; supports comparing wrongness directions across fact domains.
- [tigges2023linear] Tigges, Curt and Hollinsworth, Oskar John and Geiger, Atticus and Nanda, Neel (2023). Linear Representations of Sentiment in Large Language Models. arXiv:2310.15154.A linear feature direction that generalizes across contexts; a positive counterpoint to the domain-rotation we observe for wrongness.
- [smith2017offline] Smith, Samuel L and Turban, David HP and Hamblin, Steven and Hammerla, Nils Y (2017). Offline bilingual word vectors, orthogonal transformations and the inverted softmax. arXiv:1702.03859.Establishes that orthogonal Procrustes is the right map between linearly comparable embedding spaces; the methodological backbone of our alignment.
- [conneau2017word] Conneau, Alexis and Lample, Guillaume and Ranzato, Marc'Aurelio and Denoyer, Ludovic and J\'egou, Herv\'e (2017). Word Translation Without Parallel Data. arXiv:1710.04087.Aligns two embedding spaces with an orthogonal map and a small seed dictionary; our class-centroid anchors play the seed-dictionary role.
- [mikolov2013exploiting] Mikolov, Tomas and Le, Quoc V and Sutskever, Ilya (2013). Exploiting Similarities among Languages for Machine Translation. arXiv:1309.4168.The original linear-map-between-representation-spaces result; the conceptual ancestor of cross-domain probe transfer by a learned transform.
- [kornblith2019similarity] Kornblith, Simon and Norouzi, Mohammad and Lee, Honglak and Hinton, Geoffrey (2019). Similarity of Neural Network Representations Revisited. arXiv:1905.00414.CKA and the question of representation similarity up to invertible or orthogonal transforms; frames why orthogonal-only recovery is a meaningful claim.
- [moschella2022relative] Moschella, Luca and Maiorca, Valentino and Fumero, Marco and Norelli, Antonio and Locatello, Francesco and Rodol\`a, Emanuele (2022). Relative representations enable zero-shot latent space communication. arXiv:2209.15430.Different representation spaces relate by near-isometries; predicts that wrongness subspaces should align up to rotation, which we test directly.
- [huh2024platonic] Huh, Minyoung and Cheung, Brian and Wang, Tongzhou and Isola, Phillip (2024). The Platonic Representation Hypothesis. arXiv:2405.07987.Argues representations converge across models and modalities; our cross-domain rotation result is a within-model analogue of representational convergence.
- [turpin2023language] Turpin, Miles and Michael, Julian and Perez, Ethan and Bowman, Samuel R (2023). Language Models Don't Always Say What They Think: Unfaithful Explanations in Chain-of-Thought Prompting. arXiv:2305.04388.Stated reasoning can diverge from internal computation; motivates reading wrongness from activations rather than from outputs.
- [lanham2023measuring] Lanham, Tamera and Chen, Anna and Radhakrishnan, Ansh and Steiner, Benoit and Denison, Carson and Hernandez, Danny and Li, Dustin and Durmus, Esin and Hubinger, Evan and Kernion, Jackson and others (2023). Measuring Faithfulness in Chain-of-Thought Reasoning. arXiv:2307.13702.Quantifies the internal-vs-verbalized gap; the safety motivation for probe-based error detection that our transfer result bears on.
- [belrose2023eliciting] Belrose, Nora and Furman, Zach and Smith, Logan and Halawi, Danny and Ostrovsky, Igor and McKinney, Lev and Biderman, Stella and Steinhardt, Jacob (2023). Eliciting Latent Predictions from Transformers with the Tuned Lens. arXiv:2303.08112.Layerwise readout of latent content via learned affine maps; precedent for examining where in depth a signal becomes linearly available.
- [qwen2024technical] Yang, An and Yang, Baosong and Zhang, Beichen and Hui, Binyuan and Zheng, Bo and Yu, Bowen and Li, Chengyuan and Liu, Dayiheng and Huang, Fei and Wei, Haoran and others (2024). Qwen2.5 Technical Report. arXiv:2412.15115.Model card for Qwen2.5-7B-Instruct, the model carrying the documented token-level transfer collapse we re-examine internally.
- [llama2024herd] Dubey, Abhimanyu and Jauhri, Abhinav and Pandey, Abhinav and Kadian, Abhishek and Al-Dahle, Ahmad and Letman, Aiesha and Mathur, Akhil and Schelten, Alan and Yang, Amy and Fan, Angela and others (2024). The Llama 3 Herd of Models. arXiv:2407.21783.Model card for Llama-3.1-8B-Instruct, our second model and the no-collapse control from the sibling study.