Shared Doubt: Zero-shot Cross-Lingual Confidence Estimation for Language Models

Athina Kyriakou, Dennis Ulmer, Ivan Titov,
ILLC, University of Amsterdam
ILCC, University of Edinburgh
athina.skyriakou@gmail.com, dennis.ulmer@mailbox.org, ititov@inf.ed.ac.uk


Abstract

Confidence estimation (CE), i.e. quantifying the reliability of a model’s prediction, has attracted great interest in the context of large language models (LLMs). However, most studies focus on English, ignoring the multilingual reality of LLM usage, while many CE methods degrade or require retraining across languages. To address this gap, we investigate whether multilingual LLMs encode shared, language-transferable confidence features. We use a lightweight linear probe that predicts answer correctness directly from intermediate representations. Trained monolingually, the probe generalizes zero-shot to unseen, typologically diverse languages without target-language supervision. Learned layer weights and multiple ablations reveal that confidence features concentrate in middle layers across languages, suggesting a shared confidence subspace. While zero-shot cross-lingual performance depends on similarity to the source language, the probe provides a strong baseline without any retraining and compares favorably to other popular confidence estimation methods.

1 Introduction↩︎

Large language models (LLMs) have seen unprecedented adoption in recent years [1], [2], including in language communities besides English [3]. Despite both public awareness and academic research on their limitations, hallucination, the generation of plausible but factually incorrect statements (see e.g. [4] for an overview), still pose an ongoing problem that risks downstream harms and the loss of user trust. One potential solution to this problem is given by confidence estimation (CE), i.e. obtaining numerical values that reflect the probability that a model output is correct. CE has long been studied in machine learning [5][9] and has received increasing attention for LLMs [10][15]. However, the vast majority of works focus exclusively on English, leaving other languages largely unexplored. This is particularly concerning because models may behave less reliably in languages with fewer training data, making accurate confidence estimation even more important [16][18].

Figure 1: (Left) PCA scatter plots of (in-)correct samples in the probe’s learned aggregation of the LLM latent space. (Right) Distribution of confidence scores.

In this work, we take a first step toward truly multilingual confidence estimation in LLMs. Our approach is motivated by a key observation: prior work on multilinguality has shown that LLM hidden states capture cross-lingual features [19][22], while e.g. [23], [24] have identified uncertainty-related features. We hypothesize that these properties jointly enable cross-lingual transfer of confidence estimates. To test this, we apply a lightweight linear probe that learns a weighted combination of hidden layers to predict answer correctness. We show that the probe, trained on an LLM’s latent representations in a single language, can predict confidence scores for unseen, typologically diverse languages without any target-language supervision (zero-shot): 1 illustrates how correct and incorrect responses are distributed similarly in the learned aggregation of the target LLM’s latent space. The probe can exploit this fact as shown by its predictive distribution on the right, with some degradation as the zero-shot language becomes more dissimilar.

Our contributions are as follows: To the best of our knowledge, we are the first to demonstrate zero-shot cross-lingual transfer of confidence estimation through probing of intermediate LLM representations. We analyze how performance varies across unseen languages of the same and different language families and writing systems, and show that the probe outperforms baselines from several CE method families without retraining on the target language. Through ablations, we show that the most salient information for zero-shot confidence prediction is localized in the upper-middle layers, precisely where prior work has shown LLMs map inputs into a shared representational space. More broadly, our findings suggest a possible path toward multilingual calibration with little or no target-language supervision, where confidence signals learned in higher-resource languages transfer to lower-resource settings. All code is open-source.1

2 Related Work↩︎

We position our work at the intersection of studies examining the latent space of multilingual LLMs, the probing of model representations to identify whether specific properties are encoded, and the wider landscape of confidence estimation in LLMs.

2.0.0.1 Multilingual Latent Spaces.

Several studies have examined the organization of LLMs’ latent space, finding that layers closest to the input and output are more language-specific. However, there is no consensus on whether multilingual processing involves mapping to a particular language or through shared, language-agnostic regions in the representation space. Some works support the language dominance hypothesis, according to which inputs are mapped into a representation space shaped by the most prevalent training language (usually English), perform computations in that space, and translate the result back into the original language [20], [22], [25][27]. [26] show that in the middle layers reason in English while leveraging multilingual knowledge, while [27] identify two types of neurons, namely ones responsible mapping from a language-specific space to a shared semantic space in the early and middle layers, and those operating in reverse in the upper layers. [22] find that semantically meaningful words pass through an English-centric representation space, and [28] extend these findings to writing systems, suggesting that middle layers represent tokens in Latin script. By contrast, [29], [30] indicate that multilinguality is facilitated by shared language-agnostic representations, identifying parameters essential to cross-lingual performance. [31][34] discover language-specific neurons primarily in the lower and upper layers, with a gap in the middle layers. [21] further show that the output language is encoded in earlier layers, whereas the concept to be translated emerges in later layers. [35] find no consistently dominant language in the middle layers.

2.0.0.2 Probing Latent Representations.

Probes are lightweight models that map a model’s internal representations to a property of interest [36], [37], and are widely used in mechanistic interpretability to test whether a property is encoded in LLM representations [38], [39]. In multilingual LLM research, probes have been used to study morphosyntax [19], [40], factual knowledge [41], semantics [19], [41], and context [42], with shared features typically emerging in the middle layers. Relevant to our work, probes have been trained on LLM representations in English to detect truthfulness [23], [43][45], with [41] finding stronger signals in high-resource than in low-resource languages. While [23], [43] find that truthfulness signals peak in the middle layers, [46] show that more complex properties require deeper layers.

2.0.0.3 Confidence Estimation in LLMs.

As mentioned in the introduction, confidence estimation (CE), i.e. obtaining a score that reflects the probability of a model’s answer to be correct, has recently produced a flurry of new works (see e.g. [47][52]). Since some methods are based on the generation process, e.g. through token logits or additional responses, they are immediately applicable to any arbitrary language (although without performance guarantees). Other methods however are trained on a specific language, with unseen languages resulting in a zero-shot prediction problem; this is the setting in which probing approaches fall, which have also been applied to CE [11], [23], [53][58]. Importantly however, few works explicitly test performance on non-English and especially lower-resourced languages: [18] show how the calibration of verbalized confidence scores can vary greatly between different languages, with [59] showing the same for confidence based on sequence likelihood. [60] create a multilingual CE benchmark, consisting of questions that are both language-agnostic and specific to languages (and cultures), again demonstrating stark performance differences between methods. More related to our approach, [61] find that the most salient features for multilingual CE lie in the middle layers. However, they restrict themselves to multiple choice question-answering, and do not consider zero-shot prediction.

3 Methodology↩︎

Based on the insights from the literature, we now discuss which representations to consider, verify our assumptions, and define the probe.

3.1 Selected Intermediate Representations↩︎

Our work focuses on decoder-only transformer-based LLMs [62], [63]. Given an input token sequence, the model embeds the token at every time step \(t\) into a high-dimensional space \(\mathbf{x}_t \in \mathbb{R}^D\) and produces a hidden state \(\mathbf{h}_t^{(\ell)}\) by running sequentially through each block of transformer block at layer \(\ell\), before finally generating sequence \(y_1, y_2, ..., y_T\). Each block updates the previous hidden states in a residual way: \[\label{eq:residual-stream} \mathbf{h}_t^{(\ell)} = \mathbf{h}_t^{(\ell-1)} + g_\ell\Big(\mathbf{h}_1^{(\ell-1)}, \dots, \mathbf{h}_{t-1}^{(\ell-1)}\Big),\tag{1}\] where \(g_\ell\) is the model-specific transformation of the \(\ell\)-th block applied to the prefix and current token. This also referred to as the residual stream, serving as a central pathway that carries and incrementally refines each token’s representation. Due to the insights from e.g. [61], we exploit signals from all layers, but focus on two specific time steps: The prompt’s last token (last input token), and the generated answer’s last token (last answer token) hidden states. The former serves as a proxy for the entire input, integrating information from all preceding tokens and capturing the model’s state at the start of generation, and has been widely used in multilingual interpretability and uncertainty studies [20], [21], [30], [40], [41], [44], [64], [65]. The latter represent the model’s final state after generation and may additionally encode the LLM’s confidence in its completed response, and has been shown in other contexts to encode knowledge [66] or truthfulness [67].

3.2 A Cross-lingual Confidence Probe↩︎

Figure 2: Organization of latent representations in Qwen 3 8B on Global-MMLU, using the last input token.

Prior work has identified considerable overlap of latent representations for different language representations in the middle layers [19], [20], [29], [61]. We confirm this in our case as well, showing a selection of PCA plots in 2. Since that implies that some layers will carry more generalizable information, we define a probe that learns a weighted average of layer hidden representations \(\mathbf{h}_t^{(\ell)}\) by introducing a learnable parameter \(\mathbf{w} \in \mathbb{R}^L\), using it to compute layer weights \(\alpha_l\) and pooled representation \(\bar{\mathbf{h}}_t \in \mathbb{R}^D\):

\[\label{eq:layer95imp} \alpha_\ell = \mathrm{softmax}(\mathbf{w})_\ell = \frac{\exp(w_\ell)}{\sum_{k=1}^L \exp(w_k)},\tag{2}\] \[\label{eq:repr95pooling} \bar{\mathbf{h}}_t = \sum_{\ell=1}^L \alpha_\ell \, \mathbf{h}_{t}^{(\ell)}.\tag{3}\] This representation allows the probe to select the most informative layers for confidence estimation during training, assuming approximate per-dimension consistency as a side effect of 1 as information propagates through layers. Finally, we use a linear layer with learnable parameters \(\mathbf{v} \in \mathbb{R}^D, b \in \mathbb{R}\) and the sigmoid function \(\sigma(\cdot)\) to obtain a confidence score \(\hat{p}_t\): \[\label{eq:logit} \hat{p}_t = \sigma\big(\mathbf{v}^\top \mathbf{\bar{h}}_t + b\big).\tag{4}\]

While non-linear designs of the probe are possible, evidence from the linear representation hypothesis [38] and other studies [24], [68][70], suggests that features are often represented linearly in latent space.

4 Experiments↩︎

4.1 Setup↩︎

4.1.0.1 Datasets.

We base our experiments on two popular question-answering datasets, aiming for parallel data for comparability. Firstly, we use MKQA [71], consisting of open-ended questions across 26 languages, with the original English questions extracted from Natural Questions [72]. We consider short-phrase, entity, numeric, numeric-with-unit, and date question types and exclude questions that are time-sensitive. We considered at most 5237 questions per language, with further details of the selection process in 8.1.1. Secondly, we consider Global-MMLU [73], a parallel multilingual multiple-choice dataset covering 42 languages, derived from the English MMLU dataset [74]. Since multiple-choice evaluation is discriminative and not representative of real-world generative use cases [75], we retain only questions that can be asked in an open-ended manner, using a process we describe in detail in 8.1.2. This results in a final set of 4215 questions per language.

Table 1: Languages and translation types by dataset.
Language Genus Script
translation
translation
English Germanic Latin N/A N/A
French Romance Latin Human Human
Spanish Romance Latin Human Human
Polish Slavic Latin Human Google Translate
Russian Slavic Cyrillic Human
Google Translate
Japanese Japanese Japanese Human Human

4.1.0.2 Selected Languages.

To capture cross-lingual variation, we select the six languages shown in 1: English (en) is included as it dominates most LLMs’ training data. We further include French (fr) and Spanish (es), two closely related languages that belong to the Romance language genus [76] and also use the Latin script. Polish (pl) and Russian (ru) are chosen to represent the more dissimilar Slavic languages [76], with Russian additionally introducing the Cyrillic script. Finally, Japanese (ja) is different in both linguistic family and script. For our experiments, we choose French over English as a source language: This enables us to test on Spanish as near out-of-distribution and English as a typologically more dissimilar language.2

4.1.0.3 Models.

We test our approach on two strong contemporary autoregressive LLMs that have enjoyed lots of use in academic research and in industry alike, namely Llama 3.1 8B Instruct [77] and Qwen3 8B [78], which is also instruction-finetuned. The models feature 32 and 36 layers, respectively, and have demonstrated considerable multilingual capabilities. We generate answers with a temperature of \(0.7\) for a maximum of \(40\) tokens. All language and dataset prompts are detailed in 15 in 8.2. All experiments where performed on a single A100-80G-PCIe NVIDIA GPU.3

Table 2: LLM accuracy per dataset and language.
Dataset LLM fr en es pl ru ja
MKQA .27 .38 .24 .26 .17 .14
Qwen3 8B .18 .26 .18 .16 .13 .12
Global-MMLU .24 .35 .24 .19 .19 .17
Qwen3 8B .27 .40 .26 .23 .22 .22

4.1.0.4 Answer Correctness.

We judge answer correctness through using GPT-4.1 mini [79] as a judge, using prompt given in 16 in 8.2, obtaining the accuracies listed in 2. Two things are notable: Accuracies differ between languages due to difference in factual consistency [80], [81], and performance is strongest in English, with a degradation of performance roughly in accordance with the typological distance to it.

4.1.0.5 Evaluation Metrics.

We evaluate confidence estimates using commonly used metrics, including expected calibration error (ECE; [6], [7]) using \(10\) bins, and Brier score [82], measuring how well confidence scores correspond to the probability of correctness (calibration). We also measure how well confidence scores distinguish between correct and incorrect responses (discrimination) by recording the area under the receiver operating characteristic (AUROC) and the precision-recall curve (AUPR).

4.2 Zero-shot Confidence Estimation Results↩︎

We first evaluate the zero-shot CE performance for the probe in isolation. We include a majority class baselines (majority), which in our case refers to the negative class, and a prior-probability baseline, which samples binary correctness labels from a Bernoulli distribution, with its probability \(p\) corresponding to the training accuracy. We also train another probe on only data from the target language, which we will refer to as the oracle probe.

4pt

Table 3: Results for Qwen 3 8B on MKQA and Global-MMLU.First group shows the results for the probe and baselines trained and tested on French. all* = avg. across all languages. Remaining groups list zero-shot performance on test languages. Last Query / Last Answer = Probe trained on last query / answer hiddens. Gray numbers state performance difference compared to the oracle probe, i.e. \(\Delta < 0\) indicating that the oracle scored higher.
MKQA Global-MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Majority .50\(\pm\).00 .58\(\pm\).02 .17\(\pm\).05 .17\(\pm\).05 .50\(\pm\).00 .63\(\pm\).03 .26\(\pm\).06 .26\(\pm\).06
Prior prob. .50\(\pm\).00 .58\(\pm\).02 .14\(\pm\).03 .04\(\pm\).03 .50\(\pm\).00 .63\(\pm\).03 .19\(\pm\).03 .06\(\pm\).03
Last Query .73\(\pm\).01 .36\(\pm\).01 .17\(\pm\).01 .14\(\pm\).00 .71\(\pm\).01 .49\(\pm\).02 .21\(\pm\).01 .16\(\pm\).01
Last Answer .82\(\pm\).01 .49\(\pm\).02 .14\(\pm\).01 .12\(\pm\).01 .78\(\pm\).00 .58\(\pm\).01 .19\(\pm\).00 .16\(\pm\).00
Last Query .70\(\pm\).01 +.00 .47\(\pm\).01 +.03 .22\(\pm\).01 -.01 .18\(\pm\).01 +.00 .64\(\pm\).02 -.07 .51\(\pm\).02 -.09 .31\(\pm\).01 +.06 .26\(\pm\).01 +.07
Last Answer .70\(\pm\).01 -.08 .44\(\pm\).01 -.13 .24\(\pm\).01 +.06 .22\(\pm\).01 +.09 .72\(\pm\).01 -.04 .60\(\pm\).01 -.09 .27\(\pm\).01 +.04 .24\(\pm\).01 +.05
2-12 Last Query .71\(\pm\).01 -.01 .34\(\pm\).01 -.02 .17\(\pm\).00 -.01 .14\(\pm\).01 -.02 .68\(\pm\).01 +.00 .41\(\pm\).02 -.03 .27\(\pm\).02 +.05 .25\(\pm\).03 +.07
Last Answer .82\(\pm\).01 -.01 .53\(\pm\).03 +.01 .19\(\pm\).02 +.05 .20\(\pm\).03 +.09 .74\(\pm\).01 -.03 .52\(\pm\).01 -.03 .23\(\pm\).01 +.03 .21\(\pm\).02 +.04
2-12 Last Query .67\(\pm\).01 -.06 .28\(\pm\).01 -.06 .15\(\pm\).01 -.01 .13\(\pm\).01 -.01 .73\(\pm\).01 +.01 .40\(\pm\).01 -.02 .20\(\pm\).01 -.01 .17\(\pm\).02 +.00
Last Answer .73\(\pm\).01 -.09 .35\(\pm\).03 -.13 .23\(\pm\).03 +.10 .24\(\pm\).03 +.13 .75\(\pm\).01 -.04 .48\(\pm\).01 -.04 .27\(\pm\).03 +.09 .27\(\pm\).03 +.11
2-12 Last Query .72\(\pm\).01 +.03 .30\(\pm\).01 +.02 .12\(\pm\).00 -.04 .11\(\pm\).01 -.05 .68\(\pm\).01 -.05 .35\(\pm\).02 -.11 .23\(\pm\).02 +.04 .21\(\pm\).03 +.05
Last Answer .80\(\pm\).01 +.01 .43\(\pm\).03 +.00 .15\(\pm\).03 +.03 .16\(\pm\).04 +.05 .72\(\pm\).01 -.08 .43\(\pm\).01 -.13 .39\(\pm\).03 +.22 .42\(\pm\).03 +.28
2-12 Last Query .57\(\pm\).02 -.21 .16\(\pm\).01 -.17 .13\(\pm\).01 +.00 .11\(\pm\).01 +.00 .64\(\pm\).01 -.10 .32\(\pm\).02 -.13 .20\(\pm\).02 +.01 .17\(\pm\).03 +.00
Last Answer .64\(\pm\).04 -.23 .23\(\pm\).04 -.30 .16\(\pm\).02 +.07 .16\(\pm\).02 +.09 .72\(\pm\).01 -.07 .44\(\pm\).02 -.08 .31\(\pm\).02 +.13 .31\(\pm\).02 +.15
Figure 3: Cross-lingual generalization of the probe trained on French (fr*) for Qwen 3 8B. Each panel compares the last query token (circle, solid) against the last answer token (triangle, dashed) across test languages, for Global-MMLU (blue) and MKQA (orange). Shaded bands show ±1 standard deviation.

4.2.0.1 Results.

We show detailed results for Qwen 3 8B in 3 and visualize the overall metric trends in 3, with the complementary results for Llama 3.1 8B given in 7.1. 3 shows that the majority and prior probability baseline can be well-calibrated due to ECE not being a proper scoring rule [83], but fail at discriminating correct from incorrect predictions. Expectedly, the probe performs well when tested on its training language French. Unsurprisingly, some metrics like AUROC and AUPR tend to degrade as the probe is tested on more dissimilar languages, as exemplified by the difference to the oracle. Interestingly though, we can still see that other metrics like Brier score and ECE often stay close to or even outperform the oracle in some instances. This indicates that multilingual transfer of features is sometimes not only possible, but also beneficial, although some major performance drops are observed in specific instances. These trends become especially visible in 3, where we observe that while discrimination degrades, calibration appears to be mostly unaffected. This implies that probes are not so much affected by the covariate shift in the multilingual latent space, but the concept shift in the conditional label distribution [84], as the accuracy of the target LLM decreases for languages such as Russian or Japanese. Lastly, it appears that the last query token seems to yield more useful model representations for calibration, the last answer hidden states appear to produce better discrimination. This makes sense, as the model latents will not have encoded any information about the actual generated answer at the end of the query.

4.3 Comparison To Other Estimators↩︎

We also compare our probe to other common CE methods,4 namely length-normalized sequence likelihood (Seq. Likelihood); P(True) [11], which asks whether a response was true or false and considers the probability of the “true” token, verbalized confidence (Verbalized Conf.; [85][87]), which asks for confidence from \(0\)-\(100\) in the target language; as well as the mass-mean probe by [88], which is not trained but directly derived from the centroids of correct and incorrect predictions.5 Prompts for P(True) and verbalized confidence are shown in 8.2. Note that besides the mean-mass probe, no other baseline is similarly zero-shot in the sense of having an explicit distributional shift between training and test, but are intuitive choices for confidence estimation on unseen languages.

Spearman’s \rho between layer importance and per-layer ablation impact for last token answer for Qwen 3 8B. (Top): weight-based; (Bottom): representation-based.{#fig:[ width=“80%”}

4.3.0.1 Results.

[tab:baseline-comparison-qwen3_8b] list results of the last token answer hidden states for selected languages, with all results in 7.2. We can see that compared to the other confidence estimators, the cross-lingual probe holds up reasonably on AUROC, but degrades on calibration as typological distance to the source language (fr) grows. However, in some cases, such as Japanese on MKQA, it is outperformed by the mass-mean probe, which often is better calibrated but usually worse in discrimination. The fact that both probes are able to identify generalizable information in latents confirms our hypothesis of language-agnostic confidence signals. It also suggests that calibration can likely profit from further investigation into carefully choosing the right probe training data and architecture and potentially post-hoc re-calibration through techniques such as temperature scaling [7] or isotonic regression [89].

4.4 Understanding Layer Importance↩︎

a
b

Figure 4: Distribution of learned layer weights from probes trained with different random seeds on the hidden states of the last (a) query token and (b) answer token for Qwen 3 8B on Global-MMLU and MKQA. Shaded areas indicate ±1 standard deviation, dashed line shows uniform weight.. a — Layer weights for last query token., b — Layer weights for last answer token.

To understand what makes the probe work, we can first look at the learned layer weights in 4, with results for Llama 3.1 8B found in 7.3. While the weight distribution appears more uniform for last query token latents, the probe overall seems to learn to assign higher weights to upper-middle and top layers. To investigate whether these weights causally affect performance, we apply the interventional framework by [90]: We assess the importance of layer \(\ell\) by measuring the performance gap on a metric \(\mathcal{P}\) between a model \(\mathcal{M}\) and a variant \(\mathcal{M}^{\setminus \ell}\), where only the component \(\ell\) is changed:

\[\label{eq:delta95ablation} \Delta(\mathcal{M}, \ell) := \mathcal{P}(\mathcal{M}) - \mathcal{P}(\mathcal{M} ^{\setminus \ell}),\tag{5}\] where positive values of \(\Delta\) indicate that the component \(\ell\) contributes to a higher metric score. We apply this framework in two ways: Firstly by setting specific weights \(\alpha_\ell = 0\) and renormalizing the distribution (weight ablation) and secondly by replacing representations from a specific layer with a dummy (representation ablation). 6 Further details on these ablations are described in 7.4.

a
b

Figure 5: Impact of layer ablation on zero-shot AUROC and ECE (avg. over all languages) for Qwen3 8B. Bars show mean change in metric value over 10 random seeds. Whiskers denote \(\pm\)​1 standard deviation.. a — \(\Delta\) in AUROC on MKQA., b — \(\Delta\) in ECE score on Global-MMLU.

a
b

Figure 6: Ablation effect of layers on (a) AUROC and (b) ECE by few-shot (source language) and zero-shot results for Qwen 3 8B and probe trained on last answer token hidden states.. a — Ablation effect on AUROC., b — Ablation effect on ECE.

4.4.0.1 Results.

We show a selection of results in 5, with the rest given in 7.4. We can observe that removing middle layers leads to a less performant probe, with only the ablation of later layers yielding positive results in some cases, likely due to the probe learning language-specific information about the source that is not useful in a zero-shot setting. Measuring Spearman’s \(\rho\) between layer weights and ablation impact per metric in [fig:spear-qwen-answer], we can see correlation between layer weights and performance metrics that is preserved in zero-shot settings. The effect seems less consistent on calibration. When plotting the layer ablation impact separately on few-shot vs. zero-shot separately in 6, we can identify that middle-layer ablation has a stronger effect in zero-shot settings on calibration, while the effect on discrimination seems the remain the same in both settings. Lastly, we demonstrate in 7.5 that while learnable layer weights reveal the most salient language-agnostic signals for zero-shot confidence estimation, the probe can also learn to extract necessary information directly from the latents, likely due to the information redundancy in transformer layers visualized in 2. However, comparisons against learned weights yield inconsistent results.

5 Discussion↩︎

In our work, we demonstrated that language-general spaces in multilingual LLMs found by prior work (e.g. [20], [22], [26]) carry useful signal for confidence estimation. While [61] show that the best representations for multilingual confidence estimation lie indeed in middle layers, something that our ablations in 4.4 strongly confirm, we are the first to demonstrate that this information can be used zero-shot on unseen languages. In 4.2, we observed a gentle degradation of discrimination for confidence estimates as the similarity to the source language decreases, but overall stable calibration across most conditions. Another finding that stands out is that the time step from which hidden representations are extracted matters: While the last token of the input, often used in related probing works (e.g. [20], [21], [30], [40]) was better calibrated on other languages, this was not true for the source language itself; indeed, the lesser-used last token of the answer [45], [66] also achieved better discrimination. This could be explained by considering that the query latent states might encode information about question difficulty, while the last answer states provide definitive information about the actual answer given.

6 Conclusion↩︎

In this work, we presented the first evidence that language-agnostic latent spaces in multilingual LLMs contain correctness signals that can be exploited to perform CE on unseen languages. While performance degrades on languages dissimilar from the training language, we nevertheless demonstrated promising results in this challenging setting. Interestingly, we also found learned layer weights to mostly attend to language-general layers identified by prior work. It remains especially interesting to explore how to make this approach more robust to unseen language families and scripts by training on multiple source languages, identifying the most critical latent representations, and applying common post-hoc calibration techniques. Overall, we believe that these findings open up exciting new research directions towards truly multilingual confidence estimation with little or no supervision, especially for underserved languages.

Limitations↩︎

We acknowledge the following limitations: Firstly, our work focuses on open-source models of 8 billion parameters; nevertheless we expect our approach to still be applicable, as evidence suggests that larger models also encode multilingual / language-agnostic information that can be used for correctness predictions in their hidden representations [92], [93].

Secondly, while our language selection considers languages from different language families and script, it still mostly focuses on European languages and languages that are all relatively high-resource, with zero-shot performance likely degrading for languages that are less related, use a different script, or are less presented in the LLM’s training data, based on observed dissimilarity of latent representations for more dissimilar languages [94], [95].

Thirdly, we focus on short-form QA, whereas recent works also have started to consider reasoning [96][100] and long-form uncertainty quantification [101][104]. While our approach might still be applicable in these cases, longer generations probably require a more careful selection of the time step of hidden representation.

Additionally, linear probes may be insufficient in some cases, as self-attention and feed-forward blocks can substantially rotate and mix representation dimensions [62]. Furthermore, linearly combining layer representations may fail to capture complex cross-layer interactions that are relevant for uncertainty estimation.

Ethical Consideration↩︎

We foresee no immediate ethical issues with this work.

Acknowledgments↩︎

This work is supported by the Dutch National Science Foundation (NWO Vici VI.C.212.053) and the HELLENiQ ENERGY’s "Proud of Youth" Scholarship. Computational resources were provided by the Cirrus UK National Tier-2 HPC Service at EPCC (http://www.cirrus.ac.uk), funded by the University of Edinburgh and EPSRC (EP/P020267/1). We thank Rochelle Choenni for her help in conceptualizing this project.

7 Additional Results↩︎

7.1 Confidence Estimation Results↩︎

Figure 7: Cross-lingual generalization of the probe trained on French (fr*) for Llama 3.1 8B. Each panel compares the last query token (circle, solid) against the last answer token (triangle, dashed) across test languages, for Global-MMLU (blue) and MKQA (orange). Shaded bands show ±1 standard deviation.

4pt

Table 4: Results for Llama 3.1 8B on MKQA and Global-MMLU.First group shows the results for the probe and baselines trained and tested on French. all* = avg. across all languages. Remaining groups list zero-shot performance on test languages. Last Query / Last Answer = Probe trained on last query / answer hiddens. Gray numbers state performance difference compared to the oracle probe, i.e. \(\Delta < 0\) indicating that the oracle scored higher.
MKQA MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Majority .50\(\pm\).00 .62\(\pm\).04 .24\(\pm\).08 .24\(\pm\).08 .50\(\pm\).00 .62\(\pm\).03 .23\(\pm\).06 .23\(\pm\).06
Prior prob. .50\(\pm\).00 .62\(\pm\).04 .18\(\pm\).04 .07\(\pm\).06 .50\(\pm\).00 .62\(\pm\).03 .18\(\pm\).03 .05\(\pm\).04
Last Query .68\(\pm\).00 .45\(\pm\).00 .24\(\pm\).00 .20\(\pm\).01 .73\(\pm\).01 .48\(\pm\).02 .21\(\pm\).00 .17\(\pm\).01
Last Answer .82\(\pm\).00 .58\(\pm\).01 .17\(\pm\).00 .11\(\pm\).01 .76\(\pm\).01 .51\(\pm\).03 .19\(\pm\).01 .15\(\pm\).01
Last Query .67\(\pm\).01 +.02 .53\(\pm\).01 +.00 .28\(\pm\).00 +.00 .24\(\pm\).01 +.02 .70\(\pm\).02 +.01 .57\(\pm\).02 +.05 .26\(\pm\).01 +.00 .22\(\pm\).01 +.00
Last Answer .76\(\pm\).00 -.02 .62\(\pm\).01 -.05 .23\(\pm\).01 +.03 .16\(\pm\).03 +.03 .75\(\pm\).01 -.02 .61\(\pm\).02 -.05 .22\(\pm\).01 +.01 .17\(\pm\).03 +.01
2-12 Last Query .64\(\pm\).00 +.04 .35\(\pm\).01 +.00 .24\(\pm\).01 -.03 .20\(\pm\).01 -.04 .71\(\pm\).02 +.05 .45\(\pm\).02 +.07 .23\(\pm\).02 +.00 .21\(\pm\).03 +.01
Last Answer .77\(\pm\).01 -.04 .48\(\pm\).01 -.10 .50\(\pm\).05 +.33 .54\(\pm\).04 +.42 .78\(\pm\).01 +.00 .53\(\pm\).03 -.04 .16\(\pm\).01 -.01 .12\(\pm\).02 -.01
2-12 Last Query .68\(\pm\).01 +.00 .39\(\pm\).01 -.03 .22\(\pm\).00 -.01 .18\(\pm\).01 -.01 .69\(\pm\).01 -.01 .39\(\pm\).02 +.03 .21\(\pm\).03 +.03 .20\(\pm\).04 +.04
Last Answer .74\(\pm\).01 -.05 .47\(\pm\).01 -.09 .19\(\pm\).01 +.01 .15\(\pm\).01 +.02 .77\(\pm\).01 +.01 .47\(\pm\).02 +.01 .32\(\pm\).07 +.16 .36\(\pm\).08 +.22
2-12 Last Query .71\(\pm\).01 +.05 .38\(\pm\).01 +.05 .19\(\pm\).01 +.00 .18\(\pm\).01 +.00 .67\(\pm\).01 -.09 .34\(\pm\).01 -.11 .23\(\pm\).02 +.06 .21\(\pm\).03 +.07
Last Answer .78\(\pm\).01 -.05 .41\(\pm\).01 -.13 .14\(\pm\).01 +.00 .11\(\pm\).03 +.00 .73\(\pm\).01 -.06 .48\(\pm\).02 -.05 .31\(\pm\).07 +.15 .35\(\pm\).08 +.22
2-12 Last Query .64\(\pm\).01 -.09 .21\(\pm\).01 -.08 .21\(\pm\).04 +.05 .22\(\pm\).05 +.08 .69\(\pm\).02 +.05 .32\(\pm\).02 +.06 .20\(\pm\).03 +.01 .18\(\pm\).04 +.01
Last Answer .77\(\pm\).01 -.03 .32\(\pm\).01 -.10 .43\(\pm\).10 +.30 .49\(\pm\).10 +.39 .72\(\pm\).01 -.01 .43\(\pm\).03 +.02 .28\(\pm\).04 +.11 .29\(\pm\).04 +.13

4pt

Table 5: Results for Llama 3.1 8B on MKQA and Global-MMLU, with English as the source language.First group shows the results for the probe and baselines trained and tested on French. all* = avg. across all languages. Remaining groups list zero-shot performance on test languages. Last Query / Last Answer = Probe trained on last query / answer hiddens. Gray numbers state performance difference compared to the oracle probe, i.e. \(\Delta < 0\) indicating that the oracle scored higher.
MKQA MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Last Query .65\(\pm\).01 .53\(\pm\).01 .28\(\pm\).00 .22\(\pm\).01 .69\(\pm\).01 .52\(\pm\).01 .26\(\pm\).01 .22\(\pm\).01
Last Answer .78\(\pm\).01 .67\(\pm\).01 .20\(\pm\).00 .13\(\pm\).01 .77\(\pm\).01 .66\(\pm\).01 .21\(\pm\).01 .16\(\pm\).02
Last Query .63\(\pm\).01 -.05 .34\(\pm\).01 -.11 .27\(\pm\).01 +.03 .22\(\pm\).00 +.02 .66\(\pm\).01 -.07 .35\(\pm\).02 -.13 .23\(\pm\).02 +.02 .21\(\pm\).03 +.04
Last Answer .76\(\pm\).01 -.06 .56\(\pm\).01 -.02 .24\(\pm\).04 +.07 .23\(\pm\).06 +.12 .74\(\pm\).02 -.02 .46\(\pm\).03 -.05 .22\(\pm\).03 +.03 .20\(\pm\).05 +.05
2-12 Last Query .67\(\pm\).01 +.07 .36\(\pm\).01 +.01 .25\(\pm\).01 -.02 .21\(\pm\).01 -.03 .67\(\pm\).01 +.01 .36\(\pm\).02 -.02 .23\(\pm\).01 +.00 .19\(\pm\).02 -.01
Last Answer .74\(\pm\).01 -.07 .48\(\pm\).02 -.10 .22\(\pm\).03 +.05 .20\(\pm\).05 +.08 .74\(\pm\).02 -.04 .48\(\pm\).02 -.09 .19\(\pm\).02 +.02 .15\(\pm\).03 +.02
2-12 Last Query .69\(\pm\).01 +.01 .42\(\pm\).01 +.00 .24\(\pm\).01 +.01 .21\(\pm\).02 +.02 .64\(\pm\).02 -.06 .27\(\pm\).02 -.09 .27\(\pm\).05 +.09 .26\(\pm\).06 +.10
Last Answer .72\(\pm\).01 -.07 .50\(\pm\).02 -.06 .40\(\pm\).04 +.22 .41\(\pm\).05 +.28 .71\(\pm\).02 -.05 .38\(\pm\).03 -.08 .16\(\pm\).01 +.00 .14\(\pm\).02 +.00
2-12 Last Query .69\(\pm\).01 +.03 .33\(\pm\).01 +.00 .28\(\pm\).02 +.09 .28\(\pm\).02 +.10 .65\(\pm\).01 -.11 .26\(\pm\).01 -.19 .22\(\pm\).02 +.05 .20\(\pm\).03 +.06
Last Answer .74\(\pm\).01 -.09 .40\(\pm\).02 -.14 .47\(\pm\).04 +.33 .52\(\pm\).04 +.41 .73\(\pm\).01 -.06 .42\(\pm\).02 -.11 .15\(\pm\).01 -.01 .11\(\pm\).02 -.02
2-12 Last Query .64\(\pm\).01 -.09 .24\(\pm\).01 -.05 .59\(\pm\).07 +.43 .65\(\pm\).06 +.51 .62\(\pm\).02 -.02 .23\(\pm\).02 -.03 .52\(\pm\).08 +.33 .55\(\pm\).08 +.38
Last Answer .64\(\pm\).01 -.16 .32\(\pm\).03 -.10 .67\(\pm\).03 +.54 .68\(\pm\).03 +.58 .71\(\pm\).02 -.02 .33\(\pm\).04 -.08 .26\(\pm\).05 +.09 .27\(\pm\).07 +.11

4pt

Table 6: Results for Qwen 3 8B on MKQA and Global-MMLU, with English as the source language.First group shows the results for the probe and baselines trained and tested on French. all* = avg. across all languages. Remaining groups list zero-shot performance on test languages. Last Query / Last Answer = Probe trained on last query / answer hiddens. Gray numbers state performance difference compared to the oracle probe, i.e. \(\Delta < 0\) indicating that the oracle scored higher.
MKQA MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Last Query .70\(\pm\).01 .44\(\pm\).01 .23\(\pm\).01 .18\(\pm\).01 .71\(\pm\).01 .60\(\pm\).01 .25\(\pm\).01 .19\(\pm\).01
Last Answer .78\(\pm\).01 .57\(\pm\).01 .18\(\pm\).01 .13\(\pm\).01 .76\(\pm\).01 .69\(\pm\).01 .23\(\pm\).01 .19\(\pm\).01
Last Query .68\(\pm\).01 -.05 .31\(\pm\).01 -.05 .18\(\pm\).01 +.01 .15\(\pm\).01 +.01 .66\(\pm\).01 -.05 .41\(\pm\).01 -.08 .25\(\pm\).03 +.04 .20\(\pm\).05 +.04
Last Answer .77\(\pm\).01 -.05 .44\(\pm\).02 -.05 .16\(\pm\).02 +.02 .14\(\pm\).03 +.02 .80\(\pm\).01 +.02 .63\(\pm\).02 +.05 .20\(\pm\).01 +.01 .18\(\pm\).02 +.02
2-12 Last Query .71\(\pm\).01 -.01 .32\(\pm\).02 -.04 .19\(\pm\).01 +.01 .16\(\pm\).01 +.00 .71\(\pm\).01 +.03 .44\(\pm\).01 +.00 .23\(\pm\).02 +.01 .19\(\pm\).03 +.01
Last Answer .79\(\pm\).01 -.04 .47\(\pm\).02 -.05 .23\(\pm\).05 +.09 .25\(\pm\).07 +.14 .77\(\pm\).01 +.00 .61\(\pm\).01 +.06 .22\(\pm\).02 +.02 .21\(\pm\).03 +.04
2-12 Last Query .66\(\pm\).01 -.07 .33\(\pm\).01 -.01 .18\(\pm\).01 +.02 .16\(\pm\).02 +.02 .66\(\pm\).01 -.06 .33\(\pm\).01 -.09 .21\(\pm\).01 +.00 .20\(\pm\).01 +.03
Last Answer .74\(\pm\).01 -.08 .47\(\pm\).01 -.01 .20\(\pm\).02 +.07 .21\(\pm\).03 +.10 .76\(\pm\).01 -.03 .46\(\pm\).02 -.06 .26\(\pm\).03 +.08 .27\(\pm\).03 +.11
2-12 Last Query .70\(\pm\).01 +.01 .25\(\pm\).02 -.03 .14\(\pm\).02 -.02 .14\(\pm\).02 -.02 .64\(\pm\).01 -.09 .31\(\pm\).01 -.15 .22\(\pm\).01 +.03 .19\(\pm\).01 +.03
Last Answer .70\(\pm\).02 -.09 .36\(\pm\).02 -.07 .21\(\pm\).03 +.09 .25\(\pm\).04 +.14 .77\(\pm\).01 -.03 .52\(\pm\).01 -.04 .17\(\pm\).01 +.00 .15\(\pm\).01 +.01
2-12 Last Query .61\(\pm\).03 -.17 .16\(\pm\).01 -.17 .18\(\pm\).03 +.05 .17\(\pm\).05 +.06 .65\(\pm\).02 -.09 .32\(\pm\).02 -.13 .20\(\pm\).03 +.01 .15\(\pm\).06 -.02
Last Answer .78\(\pm\).01 -.09 .35\(\pm\).02 -.18 .19\(\pm\).03 +.10 .20\(\pm\).04 +.13 .76\(\pm\).01 -.03 .45\(\pm\).03 -.07 .23\(\pm\).03 +.05 .22\(\pm\).03 +.06

This section contains complete results for the confidence estimation results in 4.2. 4 shows the results with French as the source language for Llama 3.1 5 6 gives both sets of results, but with English instead of French used as the source language.

7.2 Comparison to Other Estimators↩︎

4pt

Table 7: Complete answer-token confidence estimation comparison for Qwen 3 8B, with probes trained in French.
MKQA Global-MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Seq. Likelihood .80\(\pm\).00 .45\(\pm\).00 .52\(\pm\).00 .62\(\pm\).00 .72\(\pm\).00 .53\(\pm\).00 .51\(\pm\).00 .58\(\pm\).00
P(True) .63\(\pm\).00 .22\(\pm\).00 .18\(\pm\).00 .18\(\pm\).00 .55\(\pm\).00 .32\(\pm\).00 .27\(\pm\).00 .27\(\pm\).00
Mass Mean Probe .67\(\pm\).00 .52\(\pm\).00 .43\(\pm\).00 .08\(\pm\).00 .60\(\pm\).00 .52\(\pm\).00 .40\(\pm\).00 .12\(\pm\).00
Verbal Conf. .71\(\pm\).00 .44\(\pm\).00 .64\(\pm\).00 .69\(\pm\).00 .75\(\pm\).00 .59\(\pm\).00 .54\(\pm\).00 .57\(\pm\).00
Cross-lingual Probe (fr) .82\(\pm\).01 .49\(\pm\).02 .14\(\pm\).01 .12\(\pm\).01 .78\(\pm\).00 .58\(\pm\).01 .19\(\pm\).00 .16\(\pm\).00
Seq. Likelihood .80\(\pm\).00 .61\(\pm\).00 .45\(\pm\).00 .54\(\pm\).00 .73\(\pm\).00 .66\(\pm\).00 .45\(\pm\).00 .48\(\pm\).00
P(True) .69\(\pm\).00 .42\(\pm\).00 .26\(\pm\).00 .26\(\pm\).00 .62\(\pm\).00 .48\(\pm\).00 .39\(\pm\).00 .39\(\pm\).00
Mass Mean Probe .67\(\pm\).00 .58\(\pm\).00 .36\(\pm\).00 .14\(\pm\).00 .56\(\pm\).00 .64\(\pm\).00 .48\(\pm\).00 .10\(\pm\).00
Verbal Conf. .70\(\pm\).00 .57\(\pm\).00 .61\(\pm\).00 .57\(\pm\).00 .72\(\pm\).00 .68\(\pm\).00 .51\(\pm\).00 .48\(\pm\).00
Cross-lingual Probe (fr) .70\(\pm\).01 .44\(\pm\).01 .24\(\pm\).01 .22\(\pm\).01 .72\(\pm\).01 .60\(\pm\).01 .27\(\pm\).01 .24\(\pm\).01
2-12 Seq. Likelihood .81\(\pm\).00 .52\(\pm\).00 .51\(\pm\).00 .61\(\pm\).00 .70\(\pm\).00 .51\(\pm\).00 .53\(\pm\).00 .59\(\pm\).00
P(True) .30\(\pm\).00 .13\(\pm\).00 .19\(\pm\).00 .19\(\pm\).00 .41\(\pm\).00 .23\(\pm\).00 .26\(\pm\).00 .26\(\pm\).00
Mass Mean Probe .65\(\pm\).00 .52\(\pm\).00 .45\(\pm\).00 .10\(\pm\).00 .59\(\pm\).00 .50\(\pm\).00 .41\(\pm\).00 .12\(\pm\).00
Verbal Conf. .75\(\pm\).00 .51\(\pm\).00 .54\(\pm\).00 .54\(\pm\).00 .73\(\pm\).00 .55\(\pm\).00 .52\(\pm\).00 .54\(\pm\).00
Cross-lingual Probe (fr) .82\(\pm\).01 .53\(\pm\).03 .19\(\pm\).02 .20\(\pm\).03 .74\(\pm\).01 .52\(\pm\).01 .23\(\pm\).01 .21\(\pm\).02
2-12 Seq. Likelihood .82\(\pm\).00 .48\(\pm\).00 .44\(\pm\).00 .57\(\pm\).00 .79\(\pm\).00 .53\(\pm\).00 .48\(\pm\).00 .58\(\pm\).00
P(True) .61\(\pm\).00 .19\(\pm\).00 .15\(\pm\).00 .15\(\pm\).00 .53\(\pm\).00 .26\(\pm\).00 .21\(\pm\).00 .21\(\pm\).00
Mass Mean Probe .71\(\pm\).00 .50\(\pm\).00 .34\(\pm\).00 .11\(\pm\).00 .59\(\pm\).00 .58\(\pm\).00 .57\(\pm\).00 .03\(\pm\).00
Verbal Conf. .67\(\pm\).00 .40\(\pm\).00 .60\(\pm\).00 .63\(\pm\).00 .76\(\pm\).00 .52\(\pm\).00 .53\(\pm\).00 .55\(\pm\).00
Cross-lingual Probe (fr) .73\(\pm\).01 .35\(\pm\).03 .23\(\pm\).03 .24\(\pm\).03 .75\(\pm\).01 .48\(\pm\).01 .27\(\pm\).03 .27\(\pm\).03
2-12 Seq. Likelihood .79\(\pm\).00 .35\(\pm\).00 .49\(\pm\).00 .62\(\pm\).00 .75\(\pm\).00 .47\(\pm\).00 .54\(\pm\).00 .62\(\pm\).00
P(True) .43\(\pm\).00 .12\(\pm\).00 .12\(\pm\).00 .12\(\pm\).00 .45\(\pm\).00 .21\(\pm\).00 .21\(\pm\).00 .21\(\pm\).00
Mass Mean Probe .73\(\pm\).00 .51\(\pm\).00 .40\(\pm\).00 .12\(\pm\).00 .62\(\pm\).00 .57\(\pm\).00 .51\(\pm\).00 .04\(\pm\).00
Verbal Conf. .72\(\pm\).00 .36\(\pm\).00 .55\(\pm\).00 .56\(\pm\).00 .73\(\pm\).00 .49\(\pm\).00 .51\(\pm\).00 .50\(\pm\).00
Cross-lingual Probe (fr) .80\(\pm\).01 .43\(\pm\).03 .15\(\pm\).03 .16\(\pm\).04 .72\(\pm\).01 .43\(\pm\).01 .39\(\pm\).03 .42\(\pm\).03
2-12 Seq. Likelihood .81\(\pm\).00 .41\(\pm\).00 .43\(\pm\).00 .56\(\pm\).00 .74\(\pm\).00 .49\(\pm\).00 .48\(\pm\).00 .57\(\pm\).00
P(True) .60\(\pm\).00 .16\(\pm\).00 .13\(\pm\).00 .13\(\pm\).00 .54\(\pm\).00 .24\(\pm\).00 .21\(\pm\).00 .21\(\pm\).00
Mass Mean Probe .83\(\pm\).00 .57\(\pm\).00 .22\(\pm\).00 .09\(\pm\).00 .52\(\pm\).00 .59\(\pm\).00 .73\(\pm\).00 .02\(\pm\).00
Verbal Conf. .67\(\pm\).00 .37\(\pm\).00 .66\(\pm\).00 .71\(\pm\).00 .72\(\pm\).00 .44\(\pm\).00 .57\(\pm\).00 .61\(\pm\).00
Cross-lingual Probe (fr) .64\(\pm\).04 .23\(\pm\).04 .16\(\pm\).02 .16\(\pm\).02 .72\(\pm\).01 .44\(\pm\).02 .31\(\pm\).02 .31\(\pm\).02

4pt

Table 8: Complete answer-token confidence estimation comparison for Llama 3.1 8B, with probes trained in French.
MKQA Global-MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Seq. Likelihood .72\(\pm\).00 .51\(\pm\).00 .39\(\pm\).00 .45\(\pm\).00 .77\(\pm\).00 .57\(\pm\).00 .28\(\pm\).00 .35\(\pm\).00
P(True) .55\(\pm\).00 .34\(\pm\).00 .27\(\pm\).00 .27\(\pm\).00 .53\(\pm\).00 .27\(\pm\).00 .24\(\pm\).00 .24\(\pm\).00
Mass Mean Probe .61\(\pm\).00 .57\(\pm\).00 .48\(\pm\).00 .10\(\pm\).00 .64\(\pm\).00 .56\(\pm\).00 .46\(\pm\).00 .10\(\pm\).00
Verbal Conf. .62\(\pm\).00 .61\(\pm\).00 .55\(\pm\).00 .11\(\pm\).00 .67\(\pm\).00 .60\(\pm\).00 .58\(\pm\).00 .27\(\pm\).00
Cross-lingual Probe (fr) .82\(\pm\).00 .58\(\pm\).01 .17\(\pm\).00 .11\(\pm\).01 .76\(\pm\).01 .51\(\pm\).03 .19\(\pm\).01 .15\(\pm\).01
Seq. Likelihood .72\(\pm\).00 .59\(\pm\).00 .32\(\pm\).00 .33\(\pm\).00 .80\(\pm\).00 .71\(\pm\).00 .26\(\pm\).00 .28\(\pm\).00
P(True) .35\(\pm\).00 .30\(\pm\).00 .39\(\pm\).00 .39\(\pm\).00 .51\(\pm\).00 .35\(\pm\).00 .36\(\pm\).00 .36\(\pm\).00
Mass Mean Probe .59\(\pm\).00 .65\(\pm\).00 .47\(\pm\).00 .10\(\pm\).00 .68\(\pm\).00 .67\(\pm\).00 .38\(\pm\).00 .08\(\pm\).00
Verbal Conf. .61\(\pm\).00 .67\(\pm\).00 .50\(\pm\).00 .15\(\pm\).00 .74\(\pm\).00 .69\(\pm\).00 .43\(\pm\).00 .32\(\pm\).00
Cross-lingual Probe (fr) .76\(\pm\).00 .62\(\pm\).01 .23\(\pm\).01 .16\(\pm\).03 .75\(\pm\).01 .61\(\pm\).02 .22\(\pm\).01 .17\(\pm\).03
2-12 Seq. Likelihood .73\(\pm\).00 .44\(\pm\).00 .38\(\pm\).00 .46\(\pm\).00 .77\(\pm\).00 .58\(\pm\).00 .29\(\pm\).00 .36\(\pm\).00
P(True) .45\(\pm\).00 .21\(\pm\).00 .24\(\pm\).00 .24\(\pm\).00 .56\(\pm\).00 .27\(\pm\).00 .23\(\pm\).00 .23\(\pm\).00
Mass Mean Probe .59\(\pm\).00 .57\(\pm\).00 .55\(\pm\).00 .05\(\pm\).00 .66\(\pm\).00 .58\(\pm\).00 .46\(\pm\).00 .09\(\pm\).00
Verbal Conf. .67\(\pm\).00 .60\(\pm\).00 .51\(\pm\).00 .16\(\pm\).00 .73\(\pm\).00 .61\(\pm\).00 .55\(\pm\).00 .37\(\pm\).00
Cross-lingual Probe (fr) .77\(\pm\).01 .48\(\pm\).01 .50\(\pm\).05 .54\(\pm\).04 .78\(\pm\).01 .53\(\pm\).03 .16\(\pm\).01 .12\(\pm\).02
2-12 Seq. Likelihood .75\(\pm\).00 .52\(\pm\).00 .31\(\pm\).00 .38\(\pm\).00 .80\(\pm\).00 .56\(\pm\).00 .31\(\pm\).00 .42\(\pm\).00
P(True) .63\(\pm\).00 .32\(\pm\).00 .25\(\pm\).00 .25\(\pm\).00 .48\(\pm\).00 .18\(\pm\).00 .19\(\pm\).00 .19\(\pm\).00
Mass Mean Probe .65\(\pm\).00 .49\(\pm\).00 .31\(\pm\).00 .18\(\pm\).00 .67\(\pm\).00 .50\(\pm\).00 .36\(\pm\).00 .09\(\pm\).00
Verbal Conf. .61\(\pm\).00 .56\(\pm\).00 .52\(\pm\).00 .14\(\pm\).00 .66\(\pm\).00 .48\(\pm\).00 .51\(\pm\).00 .37\(\pm\).00
Cross-lingual Probe (fr) .74\(\pm\).01 .47\(\pm\).01 .19\(\pm\).01 .15\(\pm\).01 .77\(\pm\).01 .47\(\pm\).02 .32\(\pm\).07 .36\(\pm\).08
2-12 Seq. Likelihood .75\(\pm\).00 .40\(\pm\).00 .35\(\pm\).00 .47\(\pm\).00 .78\(\pm\).00 .53\(\pm\).00 .29\(\pm\).00 .39\(\pm\).00
P(True) .64\(\pm\).00 .24\(\pm\).00 .14\(\pm\).00 .06\(\pm\).00 .55\(\pm\).00 .26\(\pm\).00 .16\(\pm\).00 .10\(\pm\).00
Mass Mean Probe .66\(\pm\).00 .45\(\pm\).00 .35\(\pm\).00 .13\(\pm\).00 .61\(\pm\).00 .48\(\pm\).00 .47\(\pm\).00 .12\(\pm\).00
Verbal Conf. .60\(\pm\).00 .49\(\pm\).00 .59\(\pm\).00 .12\(\pm\).00 .63\(\pm\).00 .53\(\pm\).00 .61\(\pm\).00 .28\(\pm\).00
Cross-lingual Probe (fr)) .78\(\pm\).01 .41\(\pm\).01 .14\(\pm\).01 .11\(\pm\).03 .73\(\pm\).01 .48\(\pm\).02 .31\(\pm\).07 .35\(\pm\).08
2-12 Seq. Likelihood .76\(\pm\).00 .32\(\pm\).00 .35\(\pm\).00 .48\(\pm\).00 .78\(\pm\).00 .53\(\pm\).00 .26\(\pm\).00 .35\(\pm\).00
P(True) .53\(\pm\).00 .13\(\pm\).00 .12\(\pm\).00 .11\(\pm\).00 .61\(\pm\).00 .24\(\pm\).00 .18\(\pm\).00 .17\(\pm\).00
Mass Mean Probe .62\(\pm\).00 .41\(\pm\).00 .42\(\pm\).00 .08\(\pm\).00 .69\(\pm\).00 .42\(\pm\).00 .24\(\pm\).00 .13\(\pm\).00
Verbal Conf. .70\(\pm\).00 .37\(\pm\).00 .43\(\pm\).00 .53\(\pm\).00 .61\(\pm\).00 .38\(\pm\).00 .47\(\pm\).00 .54\(\pm\).00
Cross-lingual Probe (fr) .77\(\pm\).01 .32\(\pm\).01 .43\(\pm\).10 .49\(\pm\).10 .72\(\pm\).01 .43\(\pm\).03 .28\(\pm\).04 .29\(\pm\).04

4pt

Table 9: Complete query-token confidence estimation comparison for Qwen 3 8B, with probes trained in French.
MKQA Global-MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Seq. Likelihood .63\(\pm\).00 .26\(\pm\).00 .15\(\pm\).00 .12\(\pm\).00 .50\(\pm\).00 .26\(\pm\).00 .24\(\pm\).00 .19\(\pm\).00
Mass Mean Probe .64\(\pm\).00 .47\(\pm\).00 .44\(\pm\).00 .11\(\pm\).00 .69\(\pm\).00 .57\(\pm\).00 .38\(\pm\).00 .15\(\pm\).00
Uniform Weight Probe .73\(\pm\).00 .37\(\pm\).01 .17\(\pm\).00 .14\(\pm\).00 .71\(\pm\).00 .48\(\pm\).01 .21\(\pm\).00 .16\(\pm\).01
Cross-lingual Probe (fr) .73\(\pm\).01 .36\(\pm\).01 .17\(\pm\).01 .14\(\pm\).00 .71\(\pm\).01 .49\(\pm\).02 .21\(\pm\).01 .16\(\pm\).01
2-12 Seq. Likelihood .62\(\pm\).00 .38\(\pm\).00 .24\(\pm\).00 .22\(\pm\).00 .51\(\pm\).00 .38\(\pm\).00 .36\(\pm\).00 .34\(\pm\).00
Mass Mean Probe .69\(\pm\).00 .59\(\pm\).00 .41\(\pm\).00 .12\(\pm\).00 .65\(\pm\).00 .64\(\pm\).00 .40\(\pm\).00 .18\(\pm\).00
Cross-lingual Probe (fr) .70\(\pm\).01 .47\(\pm\).01 .22\(\pm\).01 .18\(\pm\).01 .64\(\pm\).02 .51\(\pm\).02 .31\(\pm\).01 .26\(\pm\).01
2-12 Seq. Likelihood .64\(\pm\).00 .28\(\pm\).00 .16\(\pm\).00 .12\(\pm\).00 .52\(\pm\).00 .26\(\pm\).00 .22\(\pm\).00 .18\(\pm\).00
Mass Mean Probe .64\(\pm\).00 .49\(\pm\).00 .43\(\pm\).00 .10\(\pm\).00 .69\(\pm\).00 .56\(\pm\).00 .37\(\pm\).00 .14\(\pm\).00
Cross-lingual Probe (fr) .71\(\pm\).01 .34\(\pm\).01 .17\(\pm\).00 .14\(\pm\).01 .68\(\pm\).01 .41\(\pm\).02 .27\(\pm\).02 .25\(\pm\).03
2-12 Seq. Likelihood .63\(\pm\).00 .26\(\pm\).00 .13\(\pm\).00 .09\(\pm\).00 .57\(\pm\).00 .26\(\pm\).00 .18\(\pm\).00 .12\(\pm\).00
Mass Mean Probe .67\(\pm\).00 .46\(\pm\).00 .41\(\pm\).00 .11\(\pm\).00 .72\(\pm\).00 .52\(\pm\).00 .33\(\pm\).00 .14\(\pm\).00
Cross-lingual Probe (fr) .67\(\pm\).01 .28\(\pm\).01 .15\(\pm\).01 .13\(\pm\).01 .73\(\pm\).01 .40\(\pm\).01 .20\(\pm\).01 .17\(\pm\).02
2-12 Seq. Likelihood .65\(\pm\).00 .19\(\pm\).00 .11\(\pm\).00 .06\(\pm\).00 .51\(\pm\).00 .24\(\pm\).00 .18\(\pm\).00 .12\(\pm\).00
Mass Mean Probe .69\(\pm\).00 .46\(\pm\).00 .40\(\pm\).00 .10\(\pm\).00 .68\(\pm\).00 .50\(\pm\).00 .39\(\pm\).00 .17\(\pm\).00
Cross-lingual Probe (fr) .72\(\pm\).01 .30\(\pm\).01 .12\(\pm\).00 .11\(\pm\).01 .68\(\pm\).01 .35\(\pm\).02 .23\(\pm\).02 .21\(\pm\).03
2-12 Seq. Likelihood .59\(\pm\).00 .18\(\pm\).00 .12\(\pm\).00 .08\(\pm\).00 .52\(\pm\).00 .23\(\pm\).00 .19\(\pm\).00 .16\(\pm\).00
Mass Mean Probe .56\(\pm\).00 .56\(\pm\).00 .85\(\pm\).00 .10\(\pm\).00 .67\(\pm\).00 .52\(\pm\).00 .43\(\pm\).00 .17\(\pm\).00
Cross-lingual Probe (fr) .57\(\pm\).02 .16\(\pm\).01 .13\(\pm\).01 .11\(\pm\).01 .64\(\pm\).01 .32\(\pm\).02 .20\(\pm\).02 .17\(\pm\).03

4pt

Table 10: Complete query-token confidence estimation comparison for Llama 3.1 8B, with probes trained in French.
MKQA Global-MMLU
4-7 (lr)9-12 AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\) AUROC\(\uparrow\) AUPR\(\uparrow\) Brier\(\downarrow\) ECE\(\downarrow\)
Seq. Likelihood .66\(\pm\).00 .40\(\pm\).00 .23\(\pm\).00 .20\(\pm\).00 .52\(\pm\).00 .26\(\pm\).00 .20\(\pm\).00 .14\(\pm\).00
Mass Mean Probe .63\(\pm\).00 .50\(\pm\).00 .41\(\pm\).00 .21\(\pm\).00 .71\(\pm\).00 .56\(\pm\).00 .33\(\pm\).00 .15\(\pm\).00
Cross-lingual Probe (fr) .68\(\pm\).00 .45\(\pm\).00 .24\(\pm\).00 .20\(\pm\).01 .73\(\pm\).01 .48\(\pm\).02 .21\(\pm\).00 .17\(\pm\).01
Seq. Likelihood .62\(\pm\).00 .47\(\pm\).00 .37\(\pm\).00 .36\(\pm\).00 .46\(\pm\).00 .32\(\pm\).00 .33\(\pm\).00 .31\(\pm\).00
Mass Mean Probe .65\(\pm\).00 .60\(\pm\).00 .39\(\pm\).00 .23\(\pm\).00 .73\(\pm\).00 .68\(\pm\).00 .32\(\pm\).00 .15\(\pm\).00
Cross-lingual Probe (fr) .67\(\pm\).01 .53\(\pm\).01 .28\(\pm\).00 .24\(\pm\).01 .70\(\pm\).02 .57\(\pm\).02 .26\(\pm\).01 .22\(\pm\).01
2-12 Seq. Likelihood .60\(\pm\).00 .31\(\pm\).00 .21\(\pm\).00 .18\(\pm\).00 .57\(\pm\).00 .30\(\pm\).00 .19\(\pm\).00 .13\(\pm\).00
Mass Mean Probe .64\(\pm\).00 .50\(\pm\).00 .44\(\pm\).00 .21\(\pm\).00 .72\(\pm\).00 .57\(\pm\).00 .33\(\pm\).00 .14\(\pm\).00
Cross-lingual Probe (fr) .64\(\pm\).00 .35\(\pm\).01 .24\(\pm\).01 .20\(\pm\).01 .71\(\pm\).02 .45\(\pm\).02 .23\(\pm\).02 .21\(\pm\).03
2-12 Seq. Likelihood .59\(\pm\).00 .35\(\pm\).00 .22\(\pm\).00 .20\(\pm\).00 .53\(\pm\).00 .19\(\pm\).00 .16\(\pm\).00 .08\(\pm\).00
Mass Mean Probe .69\(\pm\).00 .53\(\pm\).00 .36\(\pm\).00 .19\(\pm\).00 .73\(\pm\).00 .51\(\pm\).00 .30\(\pm\).00 .13\(\pm\).00
Cross-lingual Probe (fr) .68\(\pm\).01 .39\(\pm\).01 .22\(\pm\).00 .18\(\pm\).01 .69\(\pm\).01 .39\(\pm\).02 .21\(\pm\).03 .20\(\pm\).04
2-12 Seq. Likelihood .63\(\pm\).00 .22\(\pm\).00 .14\(\pm\).00 .11\(\pm\).00 .59\(\pm\).00 .25\(\pm\).00 .16\(\pm\).00 .10\(\pm\).00
Mass Mean Probe .71\(\pm\).00 .44\(\pm\).00 .34\(\pm\).00 .17\(\pm\).00 .66\(\pm\).00 .48\(\pm\).00 .37\(\pm\).00 .13\(\pm\).00
Cross-lingual Probe (fr) .71\(\pm\).01 .38\(\pm\).01 .19\(\pm\).01 .18\(\pm\).01 .67\(\pm\).01 .34\(\pm\).01 .23\(\pm\).02 .21\(\pm\).03
2-12 Seq. Likelihood .58\(\pm\).00 .16\(\pm\).00 .11\(\pm\).00 .07\(\pm\).00 .60\(\pm\).00 .24\(\pm\).00 .16\(\pm\).00 .11\(\pm\).00
Mass Mean Probe .69\(\pm\).00 .32\(\pm\).00 .53\(\pm\).00 .48\(\pm\).00 .65\(\pm\).00 .50\(\pm\).00 .46\(\pm\).00 .13\(\pm\).00
Cross-lingual Probe (fr) .64\(\pm\).01 .21\(\pm\).01 .21\(\pm\).04 .22\(\pm\).05 .69\(\pm\).02 .32\(\pm\).02 .20\(\pm\).03 .18\(\pm\).04

This section contains the full results for the comparison with other confidence estimators in 4.3. This includes first the full results for all languages, including the few-shot setting in French, in 7 8 for Qwen 3 and Llama 3.1 respectively. In 4.3 we chose to compare other estimators to our probe trained on last answer token hidden representations, since other methods also, implicitly or explicitly, have access to full generation of the model. To also benchmark the probe trained on the last input token hidden representations, we provide 9 8.

7.3 Additional Layer Weight Plots↩︎

a
b

Figure 8: Distribution of learned layer weights from probes trained with different random seeds on the hidden states of the last (a) query token and (b) answer token for Llama 3.1 8B on Global-MMLU and MKQA. Shaded areas indicate ±1 standard deviation, dashed line shows uniform weight.. a — Layer weights for last query token., b — Layer weights for last answer token.

The corresponding layer weight plots for 4 in 4.4 for Llama 3.1 are given in 8.

7.4 Additional Ablation Results↩︎

In this section we provide more information on the ablation methodology in 4.4, and include additional results.

7.4.0.1 Weight Ablation.

We selectively make layers unavailable to the probe and quantify the impact of this change on the uncertainty estimation task using a sliding window approach. Recall the computation of layer weights in 2 . To ablate a window \(W\) of \(k\) contiguous layers, we intervene on the probe’s layer-mixing logits by setting \(\{w_\ell : \ell \in W\}\) to \(-\infty\):

\[\alpha_\ell = \mathrm{softmax}(\mathbf{w'})_\ell = \frac{\exp(w_\ell')}{\sum_{k=1}^L \exp(w_k')},\] where \[w_\ell' = \begin{cases} -\infty, & \ell \in W \\[6pt] w_\ell, & \ell \notin W. \end{cases}\]

7.4.0.2 Representation Ablation.

Recall that the probe computes a logit as \(z_i = \sum_{\ell=1}^L \alpha_\ell s_\ell + b\) (3 4 ), where \(s_{i, \ell} = \mathbf{v}^\top \mathbf{h}_{i}^{(\ell)}\) denoted here. To ablate a window \(W\) of \(k\) contiguous layers, for each example \(i\), we switch its score \(s_{i,\ell}\) with the one of another example \(s_{j,\ell}\), selected by independently sampling it from the test set. This is done to remove useful information for specific test sample, but to not introduce corrupting information that might unfairly distort probe performance. The logit of an example \(i\) after ablation of window \(W\) is therefore:

\[z_i^{(W)} \;=\; \sum_{\ell \notin W} \alpha_\ell\, s_{i,\ell} \;+\; \sum_{\ell \in W} \alpha_\ell\, \tilde{s}_{i,\ell} \;+\; b,\] with \[s_{i,\ell} = \mathbf{v}^\top \mathbf{h}_{i}^{(\ell)}, \quad \tilde{s}_{i,\ell} = {s}_{\pi(i),\ell},\] where \(\pi(\cdot)\) a permutation function defined on the natural numbers up to the cardinality of the test set, mapping each index to another index sampling uniformly without replacement and independently for each layer.

a
b

Figure 9: Impact of layer ablation on zero-shot AUROC and ECE (avg. over all languages) for Qwen3 8B. Bars show mean change in metric value over 10 random seeds. Whiskers denote \(\pm\)​1 standard deviation.. a — \(\Delta\) in AUROC on MKQA., b — \(\Delta\) in ECE score on Global-MMLU.

a
b
c
d

Figure 10: Impact of layer ablation on zero-shot AUROC and ECE (avg. over all languages) for Llama 3.1 8B. Bars show mean change in metric value over 10 random seeds. Whiskers denote \(\pm\)​1 standard deviation.. a — Weight ablation \(\Delta\) in AUROC on MKQA., b — Weight ablation \(\Delta\) in ECE score on Global-MMLU., c — Representation ablation \(\Delta\) in AUROC on MKQA., d — Representation ablation \(\Delta\) in ECE score on Global-MMLU.

7.4.0.3 Results.

Due to the sheer amount of ablation results, we only focus on a selection of additional results here, namely the corresponding plot to 5 using the representation ablation in 9, and complementary results for Llama 3.1 in 10.

7.5 Uniform Probe Weights↩︎

Figure 11: Comparison of the cross-lingual to the uniform probe for Qwen 3 8B (both probes trained in fr).
Figure 12: Comparison of the cross-lingual to the uniform probe for Llama 3.1 8B (both probes trained in fr).

We conduct additional experiments fixing the layer weights in 2 to uniform and only learning the linear layer parameters. We show the performance differences for both model in 11 12. The comparison remains overall inconsistent, but we attribute the fact that the uniform probe is able to achieve compare results to two factors: First of all, the informational redundancy in transformer layers helps to preserve information in the pooled representation even when weights are uniform, and additionally the large amount of parameters in the linear layer (\(4096\) given the size of hidden representations) helps to learn useful features for the task. Nevertheless, we see our results and works such [61] as evidence that future, more robust works will likely rely on specific layers.

8 Reproducibility Details↩︎

8.1 Data Pre-Processing↩︎

Table 11: Total number of examples per dataset, model, and language.
Dataset LLM en es fr ja pl ru
MKQA 5216 5219 5205 5176 5092 5106
Qwen3 8B 5225 5226 5222 5178 5186 5162
Global-MMLU 4077 4148 4067 4178 4111 4111
Qwen3 8B 4212 4198 4186 4195 4120 4178

In the following, we describe the exact preprocessing used for MKQA and Global-MMLU. The final number of examples per dataset, model and language can be found in 11.

8.1.1 MKQA↩︎

The MKQA dataset [71] (GitHub repository) comprises 10000 questions parallel across 26 languages, each annotated with one or more answer types (binary, date, entity, long answer, number, number with unit, short phrase, and unanswerable). We retain only questions of type date, entity, number, number with unit, and short phrase. Binary questions are excluded due to limited token generation, while long-answer and unanswerable questions are excluded because no ground-truth answers are provided in the dataset. Duplicate questions are also removed.

We further exclude questions with time-sensitive ground-truth answers that are no longer reliable. To identify such cases, we employ an LLM-as-a-judge approach using GPT-4.1 with the prompt shown in Figure 13. We use default parameters, except for a temperature of 0 and a maximum of 5 generated tokens. Filtering is performed on English questions and then propagated to other languages. As a result, the final dataset contains 5237 questions per language (date: 943, entity: 3347, number: 258, number with unit: 254, short phrase: 435).

None

Figure 13: System prompt used by the LLM-as-a-judge to assess stem answerability on a 1-10 scale..

8.1.2 Global-MMLU↩︎

For our experiments, we use the test split of the Global-MMLU dataset [73].7 The dataset spans 42 languages with 14042 multiple-choice questions across 57 subjects. Following [75], we identify and retain only those questions that are sufficiently self-contained to be posed in an open-ended format, using the following procedure applied to the English questions.

We first apply a RegEx-based filtering step to remove questions that are inherently tied to the multiple-choice format. Specifically, we remove questions that (1) contain keywords indicative of multiple-choice framing, such as "following", "which of these combinations", or "options", (2) contain fill-in-the-blank placeholders (e.g., three or more consecutive underscores), (3) reference "Statement 1" and "Statement 2" simultaneously, as these questions require evaluating paired assertions, or (4) ask the model to identify a true or false statement, as indicated by truth-value keywords ("true", "false", "correct", "incorrect"), unless the question also contains the word "following", in which case it is already caught by criterion (1).

We further use GPT-4.1 to score how well each question can be answered without the multiple-choice options, on a scale from 1 to 10 (see 13 for the full prompt). 12 outlines the score distribution across the questions. We retain only questions with a score of 8 or above, as these are sufficiently self-contained to be posed as open-ended questions. After these preprocessing steps we are left with 4215 questions. For all other languages, we retain the translations corresponding to these questions. Note that with this procedure we do not rephrase any question, ensuring that no additional wording bias is introduced during conversion to open-ended format.

Table 12: GPT-4.1 score distribution for question answerability without multiple-choice options.
Score Count Percentage
1 43 0.58%
2 50 0.67%
3 342 4.61%
4 287 3.87%
5 1171 15.79%
6 1004 13.54%
7 303 4.09%
8 2291 30.90%
9 851 11.48%
10 1073 14.47%

8.1.3 Normalization & Splitting↩︎

Sun et al. [105] showed that in transformer-based LLMs using pre-layer normalization (e.g., Llama), hidden-state variance grows exponentially with depth, hindering deeper-layer training. To address this and ensure that probe weights capture informative signal rather than magnitude differences, we apply per-layer z-score standardization with scikit-learn’s StandardScaler.

For each feature \(x\), we compute the standardized value \(x' = (x - \mu)/\sigma\), where \(\mu\) and \(\sigma\) are the training-set mean and standard deviation, centering features to zero mean and unit variance. The fitted scaler is applied unchanged to the validation and test splits of the training language, and to the test sets of all zero-shot languages. We do not further normalize, as residual magnitude differences may be informative.

Given that both datasets are parallel and class ratios vary by language, we stratify splits to prevent information leakage and ensure balanced evaluation. For each training language, hidden states are divided into train/validation/test sets (0.7:0.15:0.15) while preserving correct/incorrect ratios. Evaluation samples are drawn from the test sets so that these ratios match across all languages.

8.2 LLM Prompting↩︎

The system instructions used to prompt Llama 3.1 8B Instruct across languages are in 13.

Table 13: Mapping of evaluation splits to prompt templates.
Dataset Question Type Prompt
MKQA short phrase \(P_1\)
entity \(P_1\)
date \(P_2\)
number \(P_3\)
number with unit \(P_4\)
Global MMLU (all) \(P_5\)

Figure 14: image.

Figure 15: All system prompts used for evaluation, grouped by type (P1-P5).All prompts cover 6 languages: English (en), French (fr), Spanish (es), Polish (pl), Russian (ru), and Japanese (ja).

8.3 Answer Correctness Assessment↩︎

We use GPT-4.1 to evaluate answer correctness, using default parameters and the prompt shown in Figure 16.

Figure 16: System prompt for LLM judge used to assess answer correctness.All prompts cover 6 languages: English (en), French (fr), Spanish (es), Polish (pl), Russian (ru), and Japanese (ja).
Figure 17: Prompts used for P(True) [11].All prompts cover 6 languages: English (en), French (fr), Spanish (es), Polish (pl), Russian (ru), and Japanese (ja).
Figure 18: Prompts to ask for verbalized confidence.All prompts cover 6 languages: English (en), French (fr), Spanish (es), Polish (pl), Russian (ru), and Japanese (ja).

8.4 Confidence Probe Implementation Details↩︎

The layer weights \(\mathbf{w}\) were initialized to zero (uniform weighting across layers), the hidden-dimension weights \(\mathbf{v}\) were sampled from the normal distribution \(\mathcal{N}(0,1)\) (to break symmetry and enable diverse feature weighting), and the bias \(b\) was set to zero (no offset prior to training). Probes were trained with binary cross-entropy loss with logits and \(L_2\) regularization for \(v\): \[\label{eq:loss95function} \begin{align} \mathcal{L}(\mathbf{y}, \mathbf{z}) ={}& -\frac{1}{N} \sum_{i=1}^N \Big[ w_{+} \, y_i \log \sigma(z_i) \\ &\qquad\qquad\quad + (1 - y_i)\log\!\left(1 - \sigma(z_i)\right) \Big]\\ &\qquad\qquad\quad + \lambda \lVert \mathbf{v} \rVert_2^2 \end{align}\tag{6}\] where \(N\) is the number of training examples, \(y_i \in \{0, 1\}\) is the ground-truth correctness label, \(z_i \in \mathbb{R}\) is the logit produced by the probe, and \(\sigma(\cdot)\) is the sigmoid function. The parameter \(w_{+} \in \mathbb{R}^+\) is the correct-class weight to address class imbalance, computed from the ratio of negative to positive examples in the training set.8 \(\lambda \in \mathbb{R}^+\) is the \(L_2\) regularisation applied only to \(\mathbf{v}\), with no regularisation applied to \(\mathbf{w}\) or \(b\).

8.5 Hyperparameter Tuning↩︎

We tuned hyperparameters with Ray Tune using the ASHA scheduler for inter-trial early stopping, optimizing the scalar objective val_loss (minimized). Each trial sampled from a log-uniform search space: learning rate \(\texttt{lr} \in [10^{-5}, 10^{-1}]\) and L2 regularization on the neuron weights \(\mathbf{v}\), \(\texttt{l2\_lambda} \in [10^{-4}, 3 \times 10^{-1}]\). The batch size and maximum epochs were fixed at \(4\) and \(1000\), respectively. During each trial, we trained with AdamW using selective weight decay (L2 applied only to \(\mathbf{v}\); none for layer weights \(\mathbf{w}\) or bias terms), and reported the mean training loss and validation loss at every epoch to Ray Tune. Validation loss was computed on a fixed held-out validation split. To address class imbalance, we used BCEWithLogitsLoss with a positive-class weight proportional to the ratio of negative to positive examples in the training set. Trials were stopped early by ASHA (max_t=1000, grace_period=30, reduction_factor=2) when underperforming, while in-trial early stopping with patience \(=20\) halted training if val_loss failed to improve. After \(50\) trials, Ray Tune selected the best configuration according to the minimum validation loss. The selected hyperparameters are reported in Table 14.

Table 14: Selected hyperparameters for probes trained on last-token query and answer representations for MKQA and Global-MMLU using Llama 3.1 8B and Qwen3 8B models.
Dataset LLM Probe Learning rate Epochs
for \(v\)
MKQA Query 0.0008 139 0.2861
Answer 0.0005 210 0.2728
Qwen3 8B Query 0.0009 98 0.2953
Answer 0.0009 111 0.2225
Global-MMLU Query 0.0011 94 0.2826
Answer 0.0020 60 0.2557
Qwen3 8B Query 0.0010 103 0.2687
Answer 0.0010 165 0.2115

References↩︎

[1]
J. Wang, W. Ma, P. Sun, M. Zhang, and J.-Y. Nie, “Understanding user experience in large language model interactions,” arXiv preprint arXiv:2401.08329, 2024.
[2]
A. Humlum and E. Vestergaard, “Large language models, small labor market effects,” National Bureau of Economic Research, 2025.
[3]
Y. Liu and H. Wang, “Who on earth is using generative AI?” World Development, vol. 199, p. 107260, 2026.
[4]
L. Huang et al., “A survey on hallucination in large language models: Principles, taxonomy, challenges, and open questions,” ACM Transactions on Information Systems, vol. 43, no. 2, pp. 1–55, 2025.
[5]
M. H. DeGroot and S. E. Fienberg, “The comparison and evaluation of forecasters,” Journal of the Royal Statistical Society: Series D (The Statistician), vol. 32, no. 1–2, pp. 12–22, 1983.
[6]
M. P. Naeini, G. Cooper, and M. Hauskrecht, “Obtaining well calibrated probabilities using bayesian binning,” in Proceedings of the AAAI conference on artificial intelligence, 2015, vol. 29.
[7]
C. Guo, G. Pleiss, Y. Sun, and K. Q. Weinberger, “On calibration of modern neural networks,” in International conference on machine learning, 2017, pp. 1321–1330.
[8]
Y. Ovadia et al., “Can you trust your model’s uncertainty? Evaluating predictive uncertainty under dataset shift,” Advances in neural information processing systems, vol. 32, 2019.
[9]
M. Minderer et al., “Revisiting the calibration of modern neural networks,” Advances in neural information processing systems, vol. 34, pp. 15682–15694, 2021.
[10]
Z. Jiang, J. Araki, H. Ding, and G. Neubig, “How can we know when language models know? On the calibration of language models for question answering,” Transactions of the Association for Computational Linguistics, vol. 9, pp. 962–977, 2021.
[11]
S. Kadavath et al., “Language models (mostly) know what they know,” arXiv preprint arXiv:2207.05221, 2022.
[12]
K. Tian et al., “Just ask for calibration: Strategies for eliciting calibrated confidence scores from language models fine-tuned with human feedback,” in Proceedings of the 2023 conference on empirical methods in natural language processing, 2023, pp. 5433–5442.
[13]
C. Zhu, B. Xu, Q. Wang, Y. Zhang, and Z. Mao, “On the calibration of large language models and alignment,” in Findings of the association for computational linguistics: EMNLP 2023, 2023, pp. 9778–9795.
[14]
D. Ulmer, M. Gubri, H. Lee, S. Yun, and S. Oh, “Calibrating large language models using their generations only,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 15440–15459.
[15]
S. Kapoor et al., “Calibration-tuning: Teaching large language models to know what they don’t know,” in Proceedings of the 1st workshop on uncertainty-aware NLP (UncertaiNLP 2024), 2024, pp. 1–14.
[16]
K. Ahuja, S. Sitaram, S. Dandapat, and M. Choudhury, “On the calibration of massively multilingual language models,” in Proceedings of the 2022 conference on empirical methods in natural language processing, 2022, pp. 4310–4323.
[17]
D. Ulmer, J. Frellsen, and C. Hardmeier, “Exploring predictive uncertainty and calibration in NLP: A study on the impact of method & data scarcity,” in Findings of the association for computational linguistics: EMNLP 2022, 2022, pp. 2707–2735.
[18]
L. Krause, W. Tufa, S. B. Santamarı́a, A. Daza, U. Khurana, and P. Vossen, “Confidently wrong: Exploring the calibration and expression of (un) certainty of large language models in a multilingual setting,” in Proceedings of the workshop on multimodal, multilingual natural language generation and multilingual WebNLG challenge (MM-NLG 2023), 2023, pp. 1–9.
[19]
H. Wang, P. Minervini, and E. Ponti, “Probing the emergence of cross-lingual alignment during LLM training,” in Findings of the association for computational linguistics: ACL 2024, Aug. 2024, pp. 12159–12173, doi: 10.18653/v1/2024.findings-acl.724.
[20]
C. Wendler, V. Veselovsky, G. Monea, and R. West, “Do llamas work in English? On the latent language of multilingual transformers,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), Aug. 2024, pp. 15366–15394, doi: 10.18653/v1/2024.acl-long.820.
[21]
C. Dumas, C. Wendler, V. Veselovsky, G. Monea, and R. West, “Separating tongue from thought: Activation patching reveals language-agnostic concept representations in transformers,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), ACL 2025, vienna, austria, july 27 - august 1, 2025, 2025, pp. 31822–31841, [Online]. Available: https://aclanthology.org/2025.acl-long.1536/.
[22]
L. Schut, Y. Gal, and S. Farquhar, “Do multilingual LLMs think in english?” CoRR, vol. abs/2502.15603, 2025, doi: 10.48550/ARXIV.2502.15603.
[23]
S. Marks and M. Tegmark, “The geometry of truth: Emergent linear structure in large language model representations of true/false datasets,” CoRR, vol. abs/2310.06824, 2023, doi: 10.48550/ARXIV.2310.06824.
[24]
Z. Ji et al., “Calibrating verbal uncertainty as a linear feature to reduce hallucinations,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 3769–3793.
[25]
X. Zhang, S. Li, B. Hauer, N. Shi, and G. Kondrak, “Dont trust ChatGPT when your question is not in English: A study of multilingual abilities and types of LLMs,” in Proceedings of the 2023 conference on empirical methods in natural language processing, Dec. 2023, pp. 7915–7927, doi: 10.18653/v1/2023.emnlp-main.491.
[26]
Y. Zhao, W. Zhang, G. Chen, K. Kawaguchi, and L. Bing, “How do large language models handle multilingualism?” in Proceedings of the 38th international conference on neural information processing systems, 2024.
[27]
H. Tezuka and N. Inoue, “The transfer neurons hypothesis: An underlying mechanism for language latent space transitions in multilingual LLMs,” in Proceedings of the 2025 conference on empirical methods in natural language processing, Nov. 2025, pp. 31742–31792, doi: 10.18653/v1/2025.emnlp-main.1618.
[28]
A. Saji, J. A. Husain, T. Jayakumar, R. Dabre, A. Kunchukuttan, and R. Puduppully, RomanLens: The role of latent Romanization in multilinguality in LLMs,” in Findings of the association for computational linguistics: ACL 2025, Jul. 2025, pp. 26410–26429, doi: 10.18653/v1/2025.findings-acl.1354.
[29]
Z. Zhang, J. Zhao, Q. Zhang, T. Gui, and X.-J. Huang, “Unveiling linguistic regions in large language models,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 6228–6247.
[30]
W. Wang, B. Haddow, W. Peng, and A. Birch, “Sharing matters: Analysing neurons across languages and tasks in LLMs,” CoRR, vol. abs/2406.09265, 2024, doi: 10.48550/ARXIV.2406.09265.
[31]
S. Bhattacharya and O. Bojar, “Unveiling multilinguality in transformer models: Exploring language specificity in feed-forward networks,” in Proceedings of the 6th BlackboxNLP workshop: Analyzing and interpreting neural networks for NLP, 2023, pp. 120–126.
[32]
T. Tang et al., “Language-specific neurons: The key to multilingual capabilities in large language models,” in Proceedings of the 62nd annual meeting of the association for computational linguistics (volume 1: Long papers), 2024, pp. 5701–5715.
[33]
T. Kojima, I. Okimura, Y. Iwasawa, H. Yanaka, and Y. Matsuo, “On the multilingual ability of decoder-based pre-trained language models: Finding and controlling language-specific neurons,” in Proceedings of the 2024 conference of the north american chapter of the association for computational linguistics: Human language technologies (volume 1: Long papers), 2024, pp. 6919–6971.
[34]
H. Zeng, S. Han, L. Chen, and K. Yu, “Converging to a lingua franca: Evolution of linguistic regions and semantics alignment in multilingual large language models,” in Proceedings of the 31st international conference on computational linguistics, Jan. 2025, pp. 10602–10617, [Online]. Available: https://aclanthology.org/2025.coling-main.707/.
[35]
N. Shani and A. Basirat, “Language dominance in multilingual large language models,” in Proceedings of the 8th BlackboxNLP workshop: Analyzing and interpreting neural networks for NLP, Nov. 2025, pp. 137–148, doi: 10.18653/v1/2025.blackboxnlp-1.7.
[36]
G. Alain and Y. Bengio, “Understanding intermediate layers using linear classifier probes,” in 5th international conference on learning representations, ICLR 2017, toulon, france, april 24-26, 2017, workshop track proceedings, 2017, [Online]. Available: https://openreview.net/forum?id=HJ4-rAVtl.
[37]
Y. Belinkov, “Probing classifiers: Promises, shortcomings, and advances,” Comput. Linguistics, vol. 48, no. 1, pp. 207–219, 2022, doi: 10.1162/COLI\_A\_00422.
[38]
L. Bereska and S. Gavves, “Mechanistic interpretability for AI safety - A review,” Trans. Mach. Learn. Res., vol. 2024, 2024, [Online]. Available: https://openreview.net/forum?id=ePUVetPKu6.
[39]
J. Ferrando, G. Sarti, A. Bisazza, and M. R. Costa-jussà, “A primer on the inner workings of transformer-based language models,” CoRR, vol. abs/2405.00208, 2024, doi: 10.48550/ARXIV.2405.00208.
[40]
J. Brinkmann, C. Wendler, C. Bartelt, and A. Mueller, “Large language models share representations of latent grammatical concepts across typologically diverse languages,” in Proceedings of the 2025 conference of the nations of the americas chapter of the association for computational linguistics: Human language technologies, NAACL 2025 - volume 1: Long papers, albuquerque, new mexico, USA, april 29 - may 4, 2025, 2025, pp. 6131–6150, doi: 10.18653/V1/2025.NAACL-LONG.312.
[41]
D. Li, M. Jin, Q. Zeng, H. Zhao, and M. Du, “Exploring multilingual probing in large language models: A cross-language analysis,” CoRR, vol. abs/2409.14459, 2024, doi: 10.48550/ARXIV.2409.14459.
[42]
T. Ju, W. Sun, W. Du, X. Yuan, Z. Ren, and G. Liu, “How large language models encode context knowledge? A layer-wise probing study,” in Proceedings of the 2024 joint international conference on computational linguistics, language resources and evaluation (LREC-COLING 2024), May 2024, pp. 8235–8246, [Online]. Available: https://aclanthology.org/2024.lrec-main.722/.
[43]
K. Li, O. Patel, F. Viégas, H. Pfister, and M. Wattenberg, “Inference-time intervention: Eliciting truthful answers from a language model,” in Proceedings of the 37th international conference on neural information processing systems, 2023.
[44]
J. He, Y. Gong, Z. Lin, C. Wei, Y. Zhao, and K. Chen, LLM factoscope: Uncovering LLMs’ factual discernment through measuring inner states,” in Findings of the association for computational linguistics: ACL 2024, Aug. 2024, pp. 10218–10230, doi: 10.18653/v1/2024.findings-acl.608.
[45]
A. Azaria and T. Mitchell, “The internal state of an LLM knows when its lying,” in Findings of the association for computational linguistics: EMNLP 2023, Dec. 2023, pp. 967–976, doi: 10.18653/v1/2023.findings-emnlp.68.
[46]
M. Jin et al., “Exploring concept depth: How large language models acquire knowledge and concept at different layers?” in Proceedings of the 31st international conference on computational linguistics, Jan. 2025, pp. 558–573, [Online]. Available: https://aclanthology.org/2025.coling-main.37/.
[47]
J. Baan et al., “Uncertainty in natural language generation: From theory to applications,” arXiv preprint arXiv:2307.15703, 2023.
[48]
H.-Y. Huang, Y. Yang, Z. Zhang, S. Lee, and Y. Wu, “A survey of uncertainty estimation in llms: Theory meets practice,” arXiv preprint arXiv:2410.15326, 2024.
[49]
D. Ulmer, “On uncertainty in natural language processing,” arXiv preprint arXiv:2410.03446, 2024.
[50]
X. Liu, T. Chen, L. Da, C. Chen, Z. Lin, and H. Wei, “Uncertainty quantification and confidence calibration in large language models: A survey,” in Proceedings of the 31st ACM SIGKDD conference on knowledge discovery and data mining v. 2, 2025, pp. 6107–6117.
[51]
J. Geng, F. Cai, Y. Wang, H. Koeppl, P. Nakov, and I. Gurevych, “A survey of confidence estimation and calibration in large language models,” in Proceedings of the 2024 conference of the north american chapter of the association for computational linguistics: Human language technologies (volume 1: Long papers), 2024, pp. 6577–6595.
[52]
O. Shorinwa, Z. Mei, J. Lidard, A. Z. Ren, and A. Majumdar, “A survey on uncertainty quantification of large language models: Taxonomy, open research challenges, and future directions,” ACM Computing Surveys, vol. 58, no. 3, pp. 1–38, 2025.
[53]
C. Burns, H. Ye, D. Klein, and J. Steinhardt, “Discovering latent knowledge in language models without supervision,” in The eleventh international conference on learning representations, 2023, [Online]. Available: https://openreview.net/forum?id=ETKGuby0hcs.
[54]
L. Liu, Y. Pan, X. Li, and G. Chen, “Uncertainty estimation and quantification for llms: A simple supervised approach,” arXiv preprint arXiv:2404.15993, 2024.
[55]
M. Xiong, A. Santilli, M. Kirchhof, A. Golinski, and S. Williamson, “Efficient and effective uncertainty quantification for LLMs,” in Neurips safe generative AI workshop 2024, 2024.
[56]
X. Liu, M. Khalifa, and L. Wang, “LitCab: Lightweight language model calibration over short- and long-form responses,” in Proceedings of the twelfth international conference on learning representations, 2024, [Online]. Available: https://arxiv.org/abs/2310.19208.
[57]
Y. Fathullah, P. Radmard, A. Liusie, and M. Gales, “Who needs decoders? Efficient estimation of sequence-level attributes with proxies,” in Proceedings of the 18th conference of the european chapter of the association for computational linguistics (volume 1: Long papers), 2024, pp. 1478–1496.
[58]
A. Shelmanov et al., “A head to predict and a head to question: Pre-trained uncertainty quantification heads for hallucination detection in llm outputs,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 35700–35719.
[59]
Y. Yang, S. Dan, D. Roth, and I. Lee, “On the calibration of multilingual question answering llms,” arXiv preprint arXiv:2311.08669, 2023.
[60]
B. Xue et al., “Mlingconf: A comprehensive study of multilingual confidence estimation on large language models,” in Findings of the association for computational linguistics: ACL 2025, 2025, pp. 2535–2556.
[61]
E. Zhou et al., “Beyond the final layer: Intermediate representations for better multilingual calibration in large language models,” arXiv preprint arXiv:2510.03136, 2025.
[62]
A. Vaswani et al., “Attention is all you need,” in Advances in neural information processing systems 30: Annual conference on neural information processing systems 2017, december 4-9, 2017, long beach, CA, USA, 2017, pp. 5998–6008, [Online]. Available: https://proceedings.neurips.cc/paper/2017/hash/3f5ee243547dee91fbd053c1c4a845aa-Abstract.html.
[63]
A. Radford et al., “Language models are unsupervised multitask learners,” OpenAI blog, vol. 1, no. 8, p. 9, 2019.
[64]
H. Duan, Y. Yang, and K. Y. Tam, “Do LLMs know about hallucination? An empirical investigation of LLM’s hidden states,” CoRR, vol. abs/2402.09733, 2024, doi: 10.48550/ARXIV.2402.09733.
[65]
Z. Ji et al., LLM internal states reveal hallucination risk faced with a query,” in Proceedings of the 7th BlackboxNLP workshop: Analyzing and interpreting neural networks for NLP, Nov. 2024, pp. 88–104, doi: 10.18653/v1/2024.blackboxnlp-1.6.
[66]
C. Burns, H. Ye, D. Klein, and J. Steinhardt, “Discovering latent knowledge in language models without supervision,” arXiv preprint arXiv:2212.03827, 2022.
[67]
A. Azaria and T. Mitchell, “The internal state of an LLM knows when it’s lying,” in Findings of the association for computational linguistics: EMNLP 2023, 2023, pp. 967–976.
[68]
K. Park, Y. J. Choe, and V. Veitch, “The linear representation hypothesis and the geometry of large language models,” arXiv preprint arXiv:2311.03658, 2023.
[69]
Y. Jiang, G. Rajendran, P. Ravikumar, B. Aragam, and V. Veitch, “On the origins of linear representations in large language models,” arXiv preprint arXiv:2403.03867, 2024.
[70]
J. Merullo, N. Smith, S. Wiegreffe, and Y. Elazar, “On linear representations and pretraining data frequency in language models,” in International conference on learning representations, 2025, vol. 2025, pp. 71963–71987.
[71]
S. Longpre, Y. Lu, and J. Daiber, MKQA: A linguistically diverse benchmark for multilingual open domain question answering,” Transactions of the Association for Computational Linguistics, vol. 9, pp. 1389–1406, 2021, doi: 10.1162/tacl_a_00433.
[72]
T. Kwiatkowski et al., “Natural questions: A benchmark for question answering research,” Transactions of the Association for Computational Linguistics, vol. 7, pp. 452–466, 2019, doi: 10.1162/tacl_a_00276.
[73]
S. Singh et al., “Global MMLU: Understanding and addressing cultural and linguistic biases in multilingual evaluation.” 2024, [Online]. Available: https://arxiv.org/abs/2412.03304.
[74]
D. Hendrycks et al., “Measuring massive multitask language understanding,” in 9th international conference on learning representations, ICLR 2021, virtual event, austria, may 3-7, 2021, 2021, [Online]. Available: https://openreview.net/forum?id=d7KBjmI3GmQ.
[75]
N. Chandak, S. Goel, A. Prabhu, M. Hardt, and J. Geiping, “Answer matching outperforms multiple choice for language model evaluation,” CoRR, vol. abs/2507.02856, 2025, doi: 10.48550/ARXIV.2507.02856.
[76]
M. S. Dryer and M. Haspelmath, Eds., WALS online (v2020.4). Zenodo, 2013.
[77]
A. Grattafiori et al., “The llama 3 herd of models,” arXiv preprint arXiv:2407.21783, 2024.
[78]
Qwen Team, “Qwen3 technical report.” 2025, [Online]. Available: https://arxiv.org/abs/2505.09388.
[79]
OpenAI, Accessed: 2026-05-25“Introducing GPT-4.1 in the API.” https://openai.com/index/gpt-4-1/, Apr. 14, 2025.
[80]
C. Fierro and A. Søgaard, “Factual consistency of multilingual pretrained language models,” in Findings of the association for computational linguistics: ACL 2022, 2022, pp. 3046–3052.
[81]
J. Qi, R. Fernández, and A. Bisazza, “Cross-lingual consistency of factual knowledge in multilingual language models,” in Proceedings of the 2023 conference on empirical methods in natural language processing, 2023, pp. 10650–10666.
[82]
W. B. Glenn et al., “Verification of forecasts expressed in terms of probability,” Monthly weather review, vol. 78, no. 1, pp. 1–3, 1950.
[83]
J. Z. Liu et al., “A simple approach to improve single-model deep uncertainty via distance-awareness,” Journal of Machine Learning Research, vol. 24, no. 42, pp. 1–63, 2023.
[84]
J. G. Moreno-Torres, T. Raeder, R. Alaiz-Rodrı́guez, N. V. Chawla, and F. Herrera, “A unifying view on dataset shift in classification,” Pattern recognition, vol. 45, no. 1, pp. 521–530, 2012.
[85]
S. Lin, J. Hilton, and O. Evans, “Teaching models to express their uncertainty in words,” arXiv preprint arXiv:2205.14334, 2022.
[86]
M. Xiong et al., “Can llms express their uncertainty? An empirical evaluation of confidence elicitation in llms,” in International conference on learning representations, 2024, vol. 2024, pp. 23650–23678.
[87]
D. Ulmer, A. Lorson, I. Titov, and C. Hardmeier, “Anthropomimetic uncertainty: What verbalized uncertainty in language models is missing,” arXiv preprint arXiv:2507.10587, 2025.
[88]
S. Marks and M. Tegmark, “The geometry of truth: Emergent linear structure in large language model representations of true/false datasets,” arXiv preprint arXiv:2310.06824, 2023.
[89]
A. P. Oron and N. Flournoy, “Centered isotonic regression: Point and interval estimation for dose–response studies,” Statistics in Biopharmaceutical Research, vol. 9, no. 3, pp. 258–267, 2017.
[90]
A. Geiger et al., “Causal abstraction: A theoretical foundation for mechanistic interpretability,” Journal of Machine Learning Research, vol. 26, no. 83, pp. 1–64, 2025.
[91]
X. Men et al., “Shortgpt: Layers in large language models are more redundant than you expect,” in Findings of the association for computational linguistics: ACL 2025, 2025, pp. 20192–20204.
[92]
Y. Tan, S. He, K. Liu, and J. Zhao, “Neural incompatibility: The unbridgeable gap of cross-scale parametric knowledge transfer in large language models,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), 2025, pp. 21586–21601.
[93]
G. Lei and S. J. Cooper, “Layerwise recall and the geometry of interwoven knowledge in LLMs,” arXiv preprint arXiv:2502.10871, 2025.
[94]
S. Kudugunta, A. Bapna, I. Caswell, and O. Firat, “Investigating multilingual NMT representations at scale,” in Proceedings of the 2019 conference on empirical methods in natural language processing and the 9th international joint conference on natural language processing (EMNLP-IJCNLP), 2019, pp. 1565–1575.
[95]
J. Singh, B. McCann, R. Socher, and C. Xiong, “BERT is not an interlingua and the bias of tokenization,” in Proceedings of the 2nd workshop on deep learning approaches for low-resource NLP (DeepLo 2019), 2019, pp. 47–55.
[96]
T. Zhang et al., “Token-level uncertainty estimation for large language model reasoning,” arXiv e-prints, pp. arXiv–2505, 2025.
[97]
D. Yoon et al., “Reasoning models better express their confidence,” arXiv preprint arXiv:2505.14489, 2025.
[98]
C. Zhang, C. Shu, E. Shareghi, and N. Collier, “All roads lead to rome: Graph-based confidence estimation for large language model reasoning,” in Proceedings of the 2025 conference on empirical methods in natural language processing, 2025, pp. 31802–31812.
[99]
A. Razghandi, S. M. H. Hosseini, and M. S. Baghshah, “Cer: Confidence enhanced reasoning in llms,” in Proceedings of the 63rd annual meeting of the association for computational linguistics (volume 1: Long papers), 2025, pp. 7918–7938.
[100]
Z. Mao et al., “Confidence over time: Confidence calibration with temporal logic for large language model reasoning,” arXiv preprint arXiv:2601.13387, 2026.
[101]
X. Liu, M. Khalifa, and L. Wang, “Litcab: Lightweight language model calibration over short-and long-form responses,” arXiv preprint arXiv:2310.19208, 2023.
[102]
C. Zhang et al., “Atomic calibration of llms in long-form generations,” in Proceedings of the 14th international joint conference on natural language processing and the 4th conference of the asia-pacific chapter of the association for computational linguistics, 2025, pp. 148–169.
[103]
H. Fan, J. Duan, and K. Xu, “IUQ: Interrogative uncertainty quantification for long-form large language model generation,” arXiv preprint arXiv:2604.15109, 2026.
[104]
D. Bouchard, M. S. Chauhan, V. Bajaj, and D. Skarbrevik, “Fine-grained uncertainty quantification for long-form language model outputs: A comparative study,” arXiv preprint arXiv:2602.17431, 2026.
[105]
W. Sun, X. Song, P. Li, L. Yin, Y. Zheng, and S. Liu, “The curse of depth in large language models,” CoRR, vol. abs/2502.05795, 2025, doi: 10.48550/ARXIV.2502.05795.

  1. The code repository can be found under https://github.com/AthinaKyriakou/shared-doubt.↩︎

  2. Our main results with English as a source are included in 6 5 in 7.1.↩︎

  3. Details on probe training are given in 8.4.↩︎

  4. We only show results for last answer time step for comparability, see 7.2 for last query time step results.↩︎

  5. Compared to [88], we do not use any patching, but apply their probe from their section 5.1 directly to the latents of correct and incorrect generations.↩︎

  6. Due to the redundancy and representational similarity in adjacent transformer layers [91], we perform the ablations using a sliding window of size \(3\).↩︎

  7. https://huggingface.co/datasets/CohereLabs/Global-MMLU↩︎

  8. For more information, see the pos_weight parameter of PyTorch’s BCEWithLogitsLoss class.↩︎