REVIEW 4 major objections 4 minor 4 cited by
Estimating LLM Uncertainty with Evidence
T0 review · 4 major / 4 minor · reviewed 2026-08-09 · deepseek-v4-flash
Pith's one-line read Probability-based confidence scores fail for LLMs because normalization erases the evidence strength that raw logits carry.
desk verdict A practically promising token-level uncertainty heuristic whose central theoretical claim is not supported by the proof as written; worth refereeing but not accepting without major revision. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing machinery is the identification of raw top-$K$ logits with Dirichlet evidence parameters, borrowed from evidential learning. Here $\alpha_k$ is the $k$-th largest pre-softmax score and $\alpha_0=\sum_{k=1}^K \alpha_k$ is the total evidence; aleatoric uncertainty is the expected entropy of the resulting Dirichlet, and epistemic uncertainty is $K/(\alpha_0+K)$, so it shrinks as the total logit strength grows. This machinery carries the argument because $\mathrm{EU}$ depends on logit magnitude rather than normalized probability, which is exactly the information the paper claims softmax destroys. The paper supports the identification with a gradient analysis that treats cross-entropy training as an evidential-learning loss plus an evidence-regularization term.
What would settle it
Run any real LLM generation and inspect tokens where all top-$K$ logits are negative: Eq. 5 returns a negative epistemic uncertainty, which the Dirichlet interpretation cannot accommodate. Alternatively, fine-tune on samples in which the correct token is not among the top $K$ predictions, for which the paper's Theorem 1 predicts the sum of top-$K$ logits strictly increases while the gradient update actually decreases it; measuring the summed top-$K$ logits over training would settle the claim.
Extended reading notes
Core claim
The paper's central claim is that probability-based reliability estimation fails because normalization discards the strength of evidence accumulation, and that this information can be recovered from raw logits. Concretely, it sets $\alpha_k = M(\tau_k)$ for the $k$-th largest logit, takes the Dirichlet distribution over these evidence parameters, and defines token uncertainty as $\mathrm{AU}(a_t) = -\sum_{k=1}^K \frac{\alpha_k}{\alpha_0}(\psi(\alpha_k+1)-\psi(\alpha_0+1))$ and $\mathrm{EU}(a_t) = K/\sum_{k=1}^K (\alpha_k+1)$. High total evidence spread over several candidates means the model knows more than one valid answer; low total evidence with one dominant candidate means it lacks knowledge but is making a suggestion. This decoupling separates 'I do not know' from 'I know more than one answer', the two cases that probability conflates, and the paper demonstrates the separation through a four-quadrant taxonomy of token states and two downstream uses.
Load-bearing premise
The whole construction rests on treating the sizes of the raw pre-softmax scores as a faithful measure of how much similar evidence the model saw during training; if logit magnitude is not a reliable evidence counter, the uncertainty formula and both downstream uses lose their foundation.
Editorial extensions
If this is right
- Token-level uncertainty is available in a single forward pass, so hallucination warnings and reliability scores can be computed in real time without sampling.
- Dynamic decoding can use epistemic uncertainty to keep sampling diverse when the model knows several answers and to sample cautiously when knowledge is missing, improving multi-label accuracy across several model sizes.
- Response reliability can be read from the least reliable tokens, removing the need to hand-assign weights to uncritical tokens such as commas and function words.
- The method does not apply to black-box APIs or distilled models, because those settings either do not expose logits or rescale them so that evidence strength is lost.
Reading between the lines
- Editorial inference: if logit magnitude is a faithful evidence counter, then post-hoc interventions that shift logit scales, such as temperature scaling, calibration layers, or distillation, should degrade LogTokU's uncertainty even when they leave accuracy unchanged; that is a direct, testable consequence the paper does not run.
- Editorial inference: the four-quadrant taxonomy suggests that tokens in Quadrant IV (high AU, low EU) should be treated as safe rather than uncertain in hallucination detectors, and comparing $\mathrm{AU}\cdot\mathrm{EU}$ scoring with $\mathrm{EU}$-only scoring on free-form QA would isolate whether the typology earns its keep.
- Editorial inference: the same evidence readout could drive abstention or retrieval decisions during generation, deciding when to look up external knowledge, rather than only rescoring text after it is produced.
- Editorial inference: because Eq. 5 uses raw logits directly, a constant added to all logits changes EU without changing the output distribution; probing this sensitivity would test whether the evidence interpretation is intrinsic to the model or an artifact of logit scale.
Signed reviews
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper argues that probability-based token-level uncertainty in LLMs fails because softmax normalization discards the evidence-strength information carried by raw logits. It proposes LogTokU, which interprets the top-K logits as Dirichlet evidence parameters and computes two uncertainty components (aleatoric and epistemic) in a single forward pass. The estimated uncertainty is applied to dynamic decoding on SemEval and to response-reliability estimation (AUROC against correctness) on TruthfulQA, across LLaMA-2 and LLaMA-3 models of several sizes. The theoretical justification is presented in Section 3.5 and Appendix G, where a theorem claims that cross-entropy training accumulates top-K evidence.
Significance. If the central claim held, LogTokU would be a practically attractive contribution: it gives token-level uncertainty without sampling, distinguishes "I do not know" from "I know more than one answer," and supports downstream hallucination-related applications. The four-quadrant framing is intuitive, and the experiments cover a useful range of model sizes with several sampling-based baselines. The appendix also provides implementation details for the baselines and an honest limitations section. However, the core theoretical result is not established: the proof in Appendix G concerns direct logit updates rather than trained network parameters, and the Dirichlet parameterization in Eq. (3) is invalid for ordinary negative logits. The empirical gains are suggestive but currently best interpreted as evidence for a heuristic; the reported AUROC and decoding improvements also lack error bars and rely on parameters selected on the evaluation data.
major comments (4)
- [Appendix G, Theorem 1 and Eq. (16)] The proof analyzes gradient descent on the logits themselves (update rules z_k := z_k + eta(1-p_k) and z_i := z_i - eta p_i), not on the network parameters of M, so the conclusion does not apply to an LLM trained by optimizing weights. It also assumes the correct class tau_k lies in the top-K set T; for a misclassified sample with tau_k not in T, the change in the top-K sum is -eta sum_{i in T} p_i < 0, directly contradicting the claimed accumulation. Because top-K membership can change across gradient steps, the fixed-set inequality in Eq. (16) cannot establish the theorem as stated.
- [Eq. (3), Eq. (5), and Section 3.5] Setting alpha_k = M(tau_k) to raw logits violates the requirement that Dirichlet parameters be strictly positive, since real LLM top-K logits are frequently negative. When sum_k (alpha_k + 1) <= 0, the epistemic uncertainty EU = K / sum_k(alpha_k + 1) is undefined or negative. The "Bridging the positivity gap" paragraph in Section 3.5 argues via the softmax exponential that negative logits behave like weak evidence, but Eq. (3) still uses raw logits rather than exponentials or ReLU, so the implementation is run precisely in a regime where the stated Dirichlet justification fails.
- [Tables 1-3 and Figure 4] The headline results are reported without error bars or significance tests, and the main free parameters are selected on the evaluation data. Appendix C.1 chooses K by best AUROC on LLaMA2-13B, and Figure 4 selects the decoding threshold at the best accumulated-score point on the same test set; no validation split or sensitivity analysis is provided. As a consequence, the magnitude of the claimed improvements over the baselines is not established by the current experimental protocol.
- [Appendix F vs. Theorem 1] Appendix F states that distilled models cannot be handled because they "lose the strength of evidence in their logits," but Theorem 1 claims evidence accumulation for any LLM trained with cross-entropy. Distillation is typically trained with distribution-matching losses that are cross-entropy-like, so the scope of the theoretical claim needs to be reconciled with this self-reported limitation, or the theorem must be restricted accordingly.
minor comments (4)
- [Abstract] The abstract says the code is available at "link"; this placeholder should either contain a working repository or be removed before publication.
- [Eq. (3) and Eq. (7)] The symbol K is used both for the number of top logits in Eq. (3) and for the number of lowest-reliability tokens aggregated in Eq. (7); using distinct symbols would remove ambiguity.
- [Eq. (8) and Appendix A] Equation (8) defines R(at) = -AU(at) * EU(at), while Appendix A defines unrel(word) = AU(word) * EU(word) with lower values indicating unreliability; the sign convention should be stated consistently in both places.
- [Appendix C.2] The first sentence of Appendix C.2 misspells BLEURT as "BLUERT".
Circularity Check
No significant circularity: LogTokU's uncertainty is defined from logits and validated against external correctness labels; Appendix G's proof flaw is a validity issue, not a circular reduction.
full rationale
I walked the derivation chain. Eq. (3) sets alpha_k = logits, and Eq. (5) defines EU as K / sum(alpha_k + 1); these are definitions, not predictions. The paper's claim that probability normalization loses evidence strength is a premise, supported by the softmax invariance and illustrative examples, and the empirical validation (Tables 1 and 2) uses external correctness labels from SemEval and TruthfulQA, so the reported improvements are not forced by the construction of EU. The theoretical proof in Appendix G is not circular, but it is formally deficient: it assumes the correct class is already in the current top-K set ('Let T represent the set of classes corresponding to the top predicted classes (tau_k in T)'), and it analyzes the update of the old top-K set rather than guaranteeing the update of the new top-K set after the gradient step; Eq. (3) also does not enforce the nonnegativity that Dirichlet parameters require. These are correctness and validity concerns, not circularity. The benchmark-specific choice of K in Appendix C.1 appears to be test-set tuning, which weakens the reported AUROC as an unbiased estimate but does not make the prediction equivalent to the fitted value. No load-bearing self-citations were found; reference [22] is an external prior work. Therefore, no circular step can be exhibited under the required standard.
Assumptions & free parameters
free parameters (3)
- K (number of top logits used as evidence) =
20 (best in Table 3 ablation; not fixed in main text)
- EU threshold for dynamic decoding =
not reported
- K in response reliability aggregation (Eq. 7) =
not clearly separated from top-logit K; likely 20
assumptions (4)
- ad hoc to paper Logit magnitudes accumulate evidence during training proportional to how often similar contexts and answers were seen.
- ad hoc to paper Raw top-K logits are valid Dirichlet distribution parameters alpha_k.
- ad hoc to paper Gradient descent on cross-entropy can be analyzed as if the optimized variables are the logits themselves.
- domain assumption BLEURT > 0.5 (and the LLM-judge variant) correctly labels TruthfulQA responses as truthful or false.
Cite this review
Pith. "Pith review of Estimating LLM Uncertainty with Evidence." pith.science (2026). https://pith.science/paper/H7IOBD4N
@misc{pith2026250200290,
author = {Pith},
title = {Pith review of: Estimating LLM Uncertainty with Evidence},
year = {2026},
howpublished = {\url{https://pith.science/paper/H7IOBD4N}},
note = {Machine review of arXiv:2502.00290}
}
read the original abstract
Over the past few years, Large Language Models (LLMs) have developed rapidly and are widely applied in various domains. However, LLMs face the issue of hallucinations, generating responses that may be unreliable when the models lack relevant knowledge. To be aware of potential hallucinations, uncertainty estimation methods have been introduced, and most of them have confirmed that reliability lies in critical tokens. However, probability-based methods perform poorly in identifying token reliability, limiting their practical utility. In this paper, we reveal that the probability-based method fails to estimate token reliability due to the loss of evidence strength information which is accumulated in the training stage. Therefore, we present Logits-induced token uncertainty (LogTokU), a framework for estimating decoupled token uncertainty in LLMs, enabling real-time uncertainty estimation without requiring multiple sampling processes. We employ evidence modeling to implement LogTokU and use the estimated uncertainty to guide downstream tasks. The experimental results demonstrate that LogTokU has significant effectiveness and promise.
Figures
Forward citations
Cited by 4 Pith papers
-
Experience-Calibrated Contrastive Decoding for Mitigating Hallucinations in LM-Based Text-to-Speech
Experience-Calibrated Contrastive Decoding, a training-free decoding method that strengthens text alignment signals, reduces speech hallucination errors across four LM-based TTS models and nine languages.
-
Can You Trust the Confidence? ConfBench for Vision-Language Models on Document Extraction
Vision-language models vary widely in how trustworthy their confidence scores are on document extraction, with stronger models and OCR-plus-image input helping most, as measured on the new ConfBench benchmark.
-
INSIGHT: INference-time Sequence Introspection for Generating Help Triggers in Vision-Language-Action Models
Token-level uncertainty sequences from a VLA policy, classified by a small transformer, predict when a robot should request human help better than static uncertainty scores.
-
Eliminating Hallucination-Induced Errors in LLM Code Generation with Functional Clustering
Functional clustering uses self-generated tests to group LLM code by exact output behavior, and abstains when the largest group is too small, trading answer coverage for lower error rates.
Reference graph
Works this paper leans on
-
[1]
Llms will always halluci- nate, and we need to live with this,
S. Banerjee, A. Agarwal, and S. Singla, “Llms will always halluci- nate, and we need to live with this,” arXiv preprint arXiv:2409.05746, 2024
arXiv 2024
-
[2]
S. V . Shah, “Accuracy, consistency, and hallucination of large language models when analyzing unstructured clinical notes in electronic medical records,” JAMA Network Open, vol. 7, no. 8, pp. e2 425 953–e2 425 953, 2024
work page 2024
-
[3]
Large legal fictions: Profiling legal hallucinations in large language models,
M. Dahl, V . Magesh, M. Suzgun, and D. E. Ho, “Large legal fictions: Profiling legal hallucinations in large language models,” Journal of Legal Analysis, vol. 16, no. 1, pp. 64–93, 2024
work page 2024
-
[4]
L. Huang, W. Yu, W. Ma, W. Zhong, Z. Feng, H. Wang, Q. Chen, W. Peng, X. Feng, B. Qin et al. , “A survey on hallucination in large language models: Principles, taxonomy, challenges, and open questions,” arXiv preprint arXiv:2311.05232, 2023
arXiv 2023
-
[5]
Exploring and evaluating hallucinations in llm- powered code generation,
F. Liu, Y. Liu, L. Shi, H. Huang, R. Wang, Z. Yang, L. Zhang, Z. Li, and Y. Ma, “Exploring and evaluating hallucinations in llm- powered code generation,” arXiv preprint arXiv:2404.00971, 2024
arXiv 2024
-
[6]
Hallucinations in llms: Understanding and addressing challenges,
G. Perkovi´c, A. Drobnjak, and I. Boti ˇcki, “Hallucinations in llms: Understanding and addressing challenges,” in 2024 47th MIPRO ICT and Electronics Convention (MIPRO). IEEE, 2024, pp. 2084–2088
work page 2024
-
[7]
Larger and more instructable language models become less reliable,
L. Zhou, W. Schellaert, F. Mart ´ınez-Plumed, Y. Moros-Daval, C. Ferri, and J. Hern ´andez-Orallo, “Larger and more instructable language models become less reliable,” Nature, pp. 1–8, 2024
work page 2024
-
[8]
On hallucination and predictive uncertainty in conditional language generation,
Y. Xiao and W. Y. Wang, “On hallucination and predictive uncertainty in conditional language generation,” 2021. [Online]. Available: https://arxiv.org/abs/2103.15025
arXiv 2021
Show all 45 references
-
[9]
A survey of uncertainty estimation in llms: Theory meets practice,
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. ESTIMATING LLM UNCERTAINTY WITH LOGITS 8
2024 arXiv
-
[10]
Enhancing uncertainty-based hallucination detection with stronger focus,
T. Zhang, L. Qiu, Q. Guo, C. Deng, Y. Zhang, Z. Zhang, C. Zhou, X. Wang, and L. Fu, “Enhancing uncertainty-based hallucination detection with stronger focus,” arXiv preprint arXiv:2311.13230 , 2023
2023 arXiv
-
[11]
Debunc: mitigating hallucinations in large language model agent communication with uncertainty estimations,
L. Yoffe, A. Amayuelas, and W. Y. Wang, “Debunc: mitigating hallucinations in large language model agent communication with uncertainty estimations,” arXiv preprint arXiv:2407.06426, 2024
2024 arXiv
-
[12]
Towards mitigating llm hallucination via self reflection,
Z. Ji, T. Yu, Y. Xu, N. Lee, E. Ishii, and P . Fung, “Towards mitigating llm hallucination via self reflection,” in Findings of the Association for Computational Linguistics: EMNLP 2023, 2023, pp. 1827–1843
2023
-
[13]
Sac3: Reliable hallucination detection in black-box language models via semantic-aware cross-check consistency,
J. Zhang, Z. Li, K. Das, B. A. Malin, and S. Kumar, “Sac3: Reliable hallucination detection in black-box language models via semantic-aware cross-check consistency,” 2024. [Online]. Available: https://arxiv.org/abs/2311.01740
2024 arXiv
-
[14]
Unc- ttp: A method for classifying llm uncertainty to improve in-context example selection,
H.-Y. Huang, Z. Wu, Y. Yang, J. Zhang, and Y. Wu, “Unc- ttp: A method for classifying llm uncertainty to improve in-context example selection,” 2024. [Online]. Available: https: //arxiv.org/abs/2408.09172
2024 arXiv
-
[15]
Semantic uncertainty: Linguistic invariances for uncertainty estimation in natural language genera- tion,
L. Kuhn, Y. Gal, and S. Farquhar, “Semantic uncertainty: Linguistic invariances for uncertainty estimation in natural language genera- tion,” Nature, 2024
2024
-
[16]
Language model cascades: Token-level uncertainty and beyond,
N. Gupta, H. Narasimhan, W. Jitkrittum, A. S. Rawat, A. K. Menon, and S. Kumar, “Language model cascades: Token-level uncertainty and beyond,” arXiv preprint arXiv:2404.10136, 2024
2024 arXiv
-
[17]
Fact-checking the output of large language models via token- level uncertainty quantification,
E. Fadeeva, A. Rubashevskii, A. Shelmanov, S. Petrakov, H. Li, H. Mubarak, E. Tsymbalov, G. Kuzmin, A. Panchenko, T. Baldwin et al., “Fact-checking the output of large language models via token- level uncertainty quantification,” arXiv preprint arXiv:2403.04696, 2024
2024 arXiv
-
[18]
Critical tokens matter: Token-level contrastive estimation enhence llm’s reasoning capability,
Z. Lin, T. Liang, J. Xu, X. Wang, R. Luo, C. Shi, S. Li, Y. Yang, and Z. Tu, “Critical tokens matter: Token-level contrastive estimation enhence llm’s reasoning capability,” arXiv preprint arXiv:2411.19943, 2024
2024 arXiv
-
[19]
Shifting attention to relevance: Towards the predictive uncertainty quantification of free-form large lan- guage models,
J. Duan, H. Cheng, S. Wang, A. Zavalny, C. Wang, R. Xu, B. Kailkhura, and K. Xu, “Shifting attention to relevance: Towards the predictive uncertainty quantification of free-form large lan- guage models,” in Proceedings of the 62nd Annual Meeting of the Association for Computat...
2024
-
[20]
Gtbench: Uncovering the strategic reasoning limitations of llms via game-theoretic evaluations,
J. Duan, R. Zhang, J. Diffenderfer, B. Kailkhura, L. Sun, E. Stengel- Eskin, M. Bansal, T. Chen, and K. Xu, “Gtbench: Uncovering the strategic reasoning limitations of llms via game-theoretic evaluations,” arXiv preprint arXiv:2402.12348, 2024
2024 arXiv
-
[21]
Forking paths in neural text generation,
E. Bigelow, A. Holtzman, H. Tanaka, and T. Ullman, “Forking paths in neural text generation,” arXiv preprint arXiv:2412.07961, 2024
2024 arXiv
-
[22]
Evidential deep learning to quantify classification uncertainty,
M. Sensoy, L. Kaplan, and M. Kandemir, “Evidential deep learning to quantify classification uncertainty,”Advances in neural information processing systems, vol. 31, 2018
2018
-
[23]
Selectively answering ambiguous questions,
J. R. Cole, M. J. Q. Zhang, D. Gillick, J. M. Eisenschlos, B. Dhingra, and J. Eisenstein, “Selectively answering ambiguous questions,”
-
[24]
Generating with confidence: Uncertainty quantification for black-box large language models,
Z. Lin, S. Trivedi, and J. Sun, “Generating with confidence: Uncertainty quantification for black-box large language models,”
-
[25]
Types of out-of-distribution texts and how to detect them,
U. Arora, W. Huang, and H. He, “Types of out-of-distribution texts and how to detect them,” in Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, 2021, pp. 10 687– 10 701
2021
-
[26]
Language models (mostly) know what they know,
S. Kadavath, T. Conerly, A. Askell, T. Henighan, D. Drain, E. Perez, N. Schiefer, Z. Hatfield-Dodds, N. DasSarma, E. Tran-Johnson et al., “Language models (mostly) know what they know,” arXiv preprint arXiv:2207.05221, 2022
2022 arXiv
-
[27]
Mitigating neural network overconfidence with logit normalization,
H. Wei, R. Xie, H. Cheng, L. Feng, B. An, and Y. Li, “Mitigating neural network overconfidence with logit normalization,” in International conference on machine learning. PMLR, 2022, pp. 23 631– 23 644
2022
-
[28]
Top- nσ: Not all logits are you need,
C. Tang, J. Liu, H. Xu, and L. Huang, “Top- nσ: Not all logits are you need,” arXiv preprint arXiv:2411.07641, 2024
2024 arXiv
-
[29]
Prior and posterior networks: A survey on evidential deep learning methods for uncertainty estimation,
D. Ulmer, C. Hardmeier, and J. Frellsen, “Prior and posterior networks: A survey on evidential deep learning methods for uncertainty estimation,” 2023. [Online]. Available: https: //arxiv.org/abs/2110.03051
2023 arXiv
-
[30]
Large-language models facilitate discovery of the molecular signatures regulating sleep and activity,
D. Peng, L. Zheng, D. Liu, C. Han, X. Wang, Y. Yang, L. Song, M. Zhao, Y. Wei, J. Li et al. , “Large-language models facilitate discovery of the molecular signatures regulating sleep and activity,” Nature Communications, vol. 15, no. 1, p. 3685, 2024
2024
-
[31]
SemEval-2018 task 1: Affect in tweets,
S. Mohammad, F. Bravo-Marquez, M. Salameh, and S. Kiritchenko, “SemEval-2018 task 1: Affect in tweets,” in Proceedings of the 12th International Workshop on Semantic Evaluation, M. Apidianaki, S. M. Mohammad, J. May, E. Shutova, S. Bethard, and M. Carpuat, Eds. New Orleans, Lo...
2018
-
[32]
Uncertainty estimation in autoregressive structured prediction,
A. Malinin and M. Gales, “Uncertainty estimation in autoregressive structured prediction,” in International Conference on Learning Representations, 2021. [Online]. Available: https://openreview.net/ forum?id=jN5y-zb5Q7m
2021
-
[33]
A review of uncertainty quantification in deep learning: Techniques, applications and challenges,
M. Abdar, F. Pourpanah, S. Hussain, D. Rezazadegan, L. Liu, M. Ghavamzadeh, P . Fieguth, X. Cao, A. Khosravi, U. R. Acharya et al. , “A review of uncertainty quantification in deep learning: Techniques, applications and challenges,” Information fusion, vol. 76, pp. 243–297, 2021
2021
-
[34]
Truthfulqa: Measuring how models mimic human falsehoods,
S. Lin, J. Hilton, and O. Evans, “Truthfulqa: Measuring how models mimic human falsehoods,” arXiv preprint arXiv:2109.07958, 2021
2021 arXiv
-
[35]
Efficient and effective uncertainty quantification for LLMs,
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. [Online]. Available: https://openreview.net/forum?id=QKRLH57ATT
2024
-
[36]
mixup: Beyond empirical risk minimization,
H. Zhang, “mixup: Beyond empirical risk minimization,” arXiv preprint arXiv:1710.09412, 2017
2017 arXiv
-
[37]
Detecting hallucina- tions in large language models using semantic entropy,
S. Farquhar, J. Kossen, L. Kuhn, and Y. Gal, “Detecting hallucina- tions in large language models using semantic entropy,” Nature, vol. 630, no. 8017, pp. 625–630, 2024. ESTIMATING LLM UNCERTAINTY WITH LOGITS 9 APPENDIX A WORD UNCERTAINTY The uncertainty estimation of LogTokU ...
2024
-
[40]
positive
Token id: pos 1066, itive 3321, please note that the word “positive” referred here is different from another word “ positive”
-
[41]
same question
The “same question” refers to questions that are semantically equivalent but do not need to be identical. ESTIMATING LLM UNCERTAINTY WITH LOGITS 10 where Ωτ a a = exp(M(τ a|q,at−1))P|Y | m=1 exp(M(τ m|q,at−1)) , and yτ m a indicates the next token label of a training sample wi...
-
[42]
Gradient for the correct class ( τ i = τ k): ∂L ∂zτ k = − (1 − pτ k )
-
[43]
These gradients describe how the loss changes with respect to the logits
Gradient for incorrect classes ( τ i ̸= τ k): ∂L ∂zτ i = pτ i . These gradients describe how the loss changes with respect to the logits. Using gradient descent with a learning rate η, the update rules for the logits are as follows:
-
[44]
Update for the correct class ( τ i = τ k): zτ k := zτ k + η(1 − pτ k )
-
[45]
These updates ensure that the logit for the correct class increases, while the logits for incorrect classes decrease
Update for incorrect classes ( τ i ̸= τ k): zτ i := zτ i − ηpτ i . These updates ensure that the logit for the correct class increases, while the logits for incorrect classes decrease. Next, we analyze the change in the total evidence, defined as the sum of the k-largest logit...
-
[2023]
Available: https://arxiv.org/abs/2305.14613
[Online]. Available: https://arxiv.org/abs/2305.14613
-
[2024]
Available: https://arxiv.org/abs/2305.19187
[Online]. Available: https://arxiv.org/abs/2305.19187
Reviewed August 9, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.