REVIEW 5 major objections 6 minor 81 references
The central claim is that higher-layer expert activation patterns in MoE language models differ between factual and non-factual outputs across all MoE architectures, and a contrastive decoding method built on this pattern reduces hallucinat
Reviewed by Pith at T0; open to challenge. T0 means a machine referee read the full paper against a public rubric. the ladder, T0–T4 →
T0 review · deepseek-v4-flash
2026-08-02 14:31 UTC pith:RJLQ544Z
load-bearing objection New MoE decoding method with real accuracy gains but a weakly supported mechanism; deserves peer review with revisions. the 5 major comments →
Knowledge Injection Exists in MoE? Exploring Expert-Aware Contrast Decoding in MoE for Mitigating LLMs'Hallucinations
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
Core claim
Across all tested MoE architectures, higher-layer expert activation patterns differ measurably between factual and non-factual outputs, while the layer-wise 'knowledge injection' seen in dense transformers appears only in MoEs without shared experts. EAACD clusters final-layer experts by prediction similarity, ranks clusters by entropy/L2-norm confidence and consistency, amplifies lower-ranked experts' hallucinations via attention-masked prompts, and subtracts them from the top cluster's prediction with KL-based adaptive penalties and entropy-weighted interpolation. It outperforms all compared baselines on FACTOR, HellaSwag, StrategyQA, and MathQA for both a no-shared-expert and a shared-exp
What carries the argument
Expert activation divergence between factual and non-factual outputs, measured as L2 distance on per-layer expert activation frequency vectors, is the signal EAACD uses. The carrying mechanism is a reliability-weighted expert contrast: agglomerative clustering of final-layer expert logits; a reliability score per group combining entropy, logit L2 norm, and cluster-size consistency; attention-guided masking of salient tokens to amplify low-reliability hallucinations; and adaptive KL-divergence penalties per low-reliability group, blended into the original prediction with an entropy-based interpolation weight.
Load-bearing premise
That a single final-layer grouping, scored by confidence and group-size consistency, reliably identifies experts whose next-token predictions are more factual, and that masking salient context tokens reliably makes the complementary groups more hallucinated, without needing labeled factual examples at inference; the paper validates this only indirectly via ablations and one probability analysis.
What would settle it
Run the expert-partitioning module alone on a labeled QA set and compare next-token accuracy of the higher-reliability group against each lower-reliability group; if the higher group is not more accurate, the contrast can remove correct information. Also, measure whether masking the highest-attention tokens lowers the lower groups' accuracy relative to the unmasked prompt; if not, the negative references are not actually hallucination-amplified.
If this is right
- If higher-layer expert activation differences track factuality, then MoE hallucination mitigation can be done at decoding time from the model's own internals, without external knowledge bases or fine-tuning.
- The absence of the 'knowledge injection' layer progression in shared-expert MoEs explains why layer-contrast decoding baselines underperform there, and indicates that expert-level contrasts are the right unit for these models.
- Grouping experts by reliability—rather than by router weight alone—and amplifying low-reliability hallucinations before contrast improves accuracy across datasets, supporting the two-step design.
- The method's adaptive penalties and entropy-based calibration keep it applicable to both no-shared-expert and shared-expert MoE families with a single recipe.
Where Pith is reading between the lines
- If expert activation patterns are reliable proxies for factuality, router statistics alone might serve as a hallucination detector for MoE models, flagging uncertain generations before output.
- Because the amplification step masks the most-attended tokens, the method implies that factual MoE behavior depends on those tokens routing to the reliable experts; a testable extension is whether pruning those tokens from deployment inputs reproduces the hallucination pattern.
- The architecture-dependent knowledge-injection finding suggests design choices about shared experts shift where factual knowledge resides; that could inform pretraining decisions for future MoE architectures.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. This paper asks whether Mixture-of-Experts (MoE) LLMs exhibit the 'knowledge injection' phenomenon used by layer-wise contrastive decoding, and whether expert-level differences can support hallucination mitigation. The authors report that the Jensen–Shannon divergence between lower- and final-layer next-token distributions drops sharply in MoE without shared experts (LLaMA-MoE, Mixtral) but stays flat in MoE with shared experts (DeepSeek-MoE, Qwen-MoE), and that higher-layer router activation patterns differ between factual and non-factual outputs. They then propose EAACD, which clusters final-layer expert logits, scores groups by confidence (entropy, L2 norm) and size-based consistency, selects one high-reliability group, masks salient context tokens to amplify low-reliability predictions, and contrasts the high-reliability prediction against the amplified low-reliability predictions with KL-derived weights and entropy-based calibration. On FACTOR subsets, HellaSwag, StrategyQA, and MathQA, EAACD outperforms greedy, CD, DoLa, SCMoE, END, and Self-Endorsement on LLaMA-MoE and Qwen-MoE.
Significance. If the central premise holds—that the confidence/consistency grouping separates factual from hallucination-prone experts—EAACD would be a useful training-free hallucination mitigation method for MoE models and one of the first to exploit expert diversity for contrastive decoding. The paper includes several good practices: a public code link, a control experiment in Appendix K intended to rule out depth/scale confounds for the shared-expert finding, a case study, and ablations of the main components. However, the direct evidence for the factuality–expert link is thin, the evaluation is narrow, and the method's connection to the router-activation analysis is not established. These issues are substantial but appear fixable with additional analysis and experiments.
major comments (5)
- [§3.3 and §4.1] The empirical motivation and the proposed method operate on different objects. RQ2 (Figs. 3–4) measures expert activation patterns—router activation frequencies—and concludes that higher layers show divergent expert activation between factual and non-factual outputs. EAACD, however, does not use router activations; it clusters experts by final-layer logits (§4.1.1) and scores them by entropy/L2 norm and group size (§4.1.2). No result in the paper connects the two: an expert that is activated differently under factual versus non-factual conditions is never shown to be the same expert that lands in the higher- or lower-reliability group. The central claim that EAACD exploits the §3.3 finding is therefore not directly supported. Please add a direct analysis (e.g., comparing router-activation changes with group membership, or a version of EAACD conditioned on router statistics).
- [§5.4, Fig. 6] The only direct evidence that higher-reliability expert groups favor factual answers is Fig. 6. The mean probability differences between correct and incorrect answers are on the order of 1e-5 to 1e-6, computed without error bars, confidence intervals, or significance tests, and the metric is not top-1 accuracy. Such probability-mass differences are within the noise of a softmax over a large vocabulary. The Appendix H case study (Table 5) is a single example. The ablations in Table 2 show that removing the confidence/consistency components hurts accuracy, but that only establishes a contribution to the objective, not that the grouping separates factual from non-factual experts. This is load-bearing because the 'knowledge injection'/factual-expert interpretation depends on it. Please provide a direct factual-accuracy measurement of the groups (e.g., top-1 accuracy on labeled FACTOR example
- [§5.1, Table 1] The main evaluation only covers LLaMA-MoE and Qwen-MoE; Mixtral and DeepSeek-MoE appear in the empirical study but not in the performance table. The abstract and conclusion claim effectiveness 'across different MoEs' and 'all MoE architectures,' but no EAACD result is reported for Mixtral, DeepSeek, or any shared-expert model besides Qwen. In addition, Table 1 reports only accuracy with no standard errors or repeated runs, and Table 3's paired t-tests are aggregated and do not show per-dataset or per-model breakdowns. Please add EAACD results on at least Mixtral and DeepSeek (or a justified subset) and report variance.
- [§4.1.2, Eq. (1)–(2)] The reliability score T_j = mean confidence + |c_j|/(k m) adds a term that is purely group size. For any fixed m, the largest cluster receives an automatic reliability boost independent of prediction consistency; the term is better called a size prior than a consistency score. If the largest cluster is typically the one with the most 'default' predictions, this could bias the high-reliability group selection in a way that is not tied to factuality. Please justify or replace this term, and report the sensitivity of the results to the cluster count m, which is not specified in the paper (nor are the clustering distance/linkage choices in §4.1.1).
- [§3.3 and App. B] Non-factual outputs in RQ2 are generated using a malicious system prompt ('generate incorrect answers'). Under this design, the difference between factual and non-factual expert activation patterns may reflect compliance with an instruction to be incorrect rather than factuality per se. The same confound carries into the motivation for EAACD. A less instruction-bound way to induce non-factual outputs (e.g., entity substitution, adversarial distractors, or known hallucination triggers without an explicit 'be incorrect' instruction) would make the finding more convincing.
minor comments (6)
- [App. I] The β-selection text appears logically reversed: 'If β is too large, an excessive number of tokens are masked... Conversely, if β is too small, only a few tokens are masked.' Since tokens are masked when importance exceeds β, a larger β masks fewer tokens. Please correct.
- [Eq. (2)–(3)] The display of Eq. (2) is garbled (the D_KL notation and softmax arguments are difficult to parse), and Eq. (3) writes p′ = p_r − p_l although p_r and p_l are logits. Clarify the distinction between logits and probabilities throughout §4.3.
- [§4.1.1] The number of clusters m is not specified, and no sensitivity analysis is given. Since the reliability grouping depends on m, please report the value(s) used and, ideally, a small robustness check.
- [Appendix K] The OpenMoE control experiment is a useful check, but it is presented only on a single input sample. Dataset-level averages, as in Fig. 22, would strengthen the claim that the shared-expert effect is not due to model depth or scale.
- [§7 Limitations] The Limitations section only discusses the possibility that MoE architectures may become non-mainstream. It does not acknowledge the lack of direct expert-factuality validation, the instruction-following confound in RQ2, or the limited model coverage of the main evaluation. These are more immediate limitations of the current work.
- [Fig. 6] The figure legend uses colors and line markers that may be hard to distinguish in grayscale; please add clearer labels or hatching. Also indicate the number of samples used to compute the mean probability differences.
Circularity Check
No significant circularity: EAACD's reliability grouping is not fitted to test labels and the contrastive decoding is a genuine compositional manipulation.
full rationale
The paper's central chain is: (i) observe JSD layer trajectories and expert-activation L2 differences; (ii) define an unsupervised reliability score T_j = mean expert confidence + group consistency, where confidence is entropy/L2 based and is not a function of the correctness labels; (iii) cluster experts by prediction similarity; (iv) amplify lower-reliability group hallucinations by attention masking; (v) contrast p_r and p_l and calibrate p_o via an entropy weight. None of these steps fits a parameter to the test labels or defines the target quantity in terms of itself. The reliability score is a proxy (confidence/consistency), and the paper's Fig. 6 is an external check of that proxy against FACTOR labels rather than a derivation of the labels from the proxy. The ablation table shows components contribute, but that is an empirical claim, not a tautology. Self-citations (Fang et al. 2025c; Fang et al. 2025a,b; Pan et al. 2026; Sun et al. 2025) appear only as background or societal-impact citations and do not carry the load-bearing argument. Weaknesses such as the tiny Fig. 6 probability differences, the prompt-induced 'non-factual' condition in §3.3, and the factually incorrect Table 7 case are validity/correctness concerns, not evidence that the derivation reduces to its inputs. The method would be circular only if high-reliability status were assigned using the same correct-answer probabilities it is then used to predict; the paper assigns it with entropy/L2/consistency, independent of labels. The central claim therefore has independent empirical content, and the self-citations are not load-bearing.
Axiom & Free-Parameter Ledger
free parameters (4)
- mask threshold β =
not specified numerically
- number of expert clusters m =
not specified
- final-layer selection =
final layer only
- reliability formula weights α =
adaptive via σH/(σH+σL)
axioms (4)
- domain assumption Entropy and L2 norm of expert logits measure expert reliability.
- domain assumption Higher layers' expert activation divergence between factual/non-factual outputs implies expert capability differences usable for decoding.
- domain assumption Masking high-attention context tokens amplifies hallucinations in lower-reliability experts.
- domain assumption Agglomerative clustering of expert logits produces meaningful reliability groups.
read the original abstract
Existing LLM hallucination mitigation methods, including prompt engineering and model optimization, either hardly alter models'internal knowledge or have poor cross-domain generalization. Contrastive decoding mitigates hallucinations by using layer-wise differences in LLMs. However, prior studies only explore transformer-based models (e.g., GPT), ignoring other effective frameworks like mixture-of-experts (MoE) models. Since MoE alters the traditional transformer architecture, we conduct empirical studies to investigate whether similar layer-wise differences exist in MoEs. Our results show that they do not exist in MoE with shared experts; nevertheless, across different MoEs, higher layers exhibit distinct expert activation patterns between factual and non-factual outputs. Building on these, we propose EAACD, an expert-aware adaptive contrast decoding that uses expert differences in MoE's higher layers to mitigate hallucinations on QA tasks. EAACD splits high-layer experts into a higher-reliability group and several lower-reliability groups based on their confidence and consistency. It contrasts the higher-reliability group's prediction with each lower-reliability group's prediction to calibrate the model's original predictions. To strengthen this contrast, EAACD amplifies hallucinations from lower-reliability experts via attention and masking to provide stronger negative references. EAACD outperforms all baselines on four datasets.
Figures
Reference graph
Works this paper leans on
-
[1]
Advances in neural information processing systems , volume=
Language models are few-shot learners , author=. Advances in neural information processing systems , volume=
-
[2]
arXiv preprint arXiv:2210.09150 , year=
Prompting gpt-3 to be reliable , author=. arXiv preprint arXiv:2210.09150 , year=
-
[3]
Advances in neural information processing systems , volume=
Chain-of-thought prompting elicits reasoning in large language models , author=. Advances in neural information processing systems , volume=
-
[4]
Advances in neural information processing systems , volume=
Tree of thoughts: Deliberate problem solving with large language models , author=. Advances in neural information processing systems , volume=
-
[5]
Proceedings of the AAAI conference on artificial intelligence , volume=
Graph of thoughts: Solving elaborate problems with large language models , author=. Proceedings of the AAAI conference on artificial intelligence , volume=
-
[6]
arXiv preprint arXiv:2310.06271 , year=
Towards mitigating hallucination in large language models via self-reflection , author=. arXiv preprint arXiv:2310.06271 , year=
-
[7]
arXiv preprint arXiv:2212.10560 , year=
Self-instruct: Aligning language models with self-generated instructions , author=. arXiv preprint arXiv:2212.10560 , year=
-
[8]
arXiv preprint arXiv:2501.17295 , year=
Mitigating hallucinated translations in large language models with hallucination-focused preference optimization , author=. arXiv preprint arXiv:2501.17295 , year=
-
[9]
arXiv preprint arXiv:2212.12017 , year=
Opt-iml: Scaling language model instruction meta learning through the lens of generalization , author=. arXiv preprint arXiv:2212.12017 , year=
-
[10]
Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
Hallucination mitigation in natural language generation from large-scale open-domain knowledge graphs , author=. Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
2023
-
[11]
arXiv preprint arXiv:2406.11267 , year=
Mitigating large language model hallucination with faithful finetuning , author=. arXiv preprint arXiv:2406.11267 , year=
-
[12]
Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
Can We Edit Factual Knowledge by In-Context Learning? , author=. Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
2023
-
[13]
Advances in Neural Information Processing Systems , volume=
Adversarial representation engineering: A general model editing framework for large language models , author=. Advances in Neural Information Processing Systems , volume=
-
[14]
arXiv preprint arXiv:2301.09785 , year=
Transformer-patcher: One mistake worth one neuron , author=. arXiv preprint arXiv:2301.09785 , year=
-
[15]
Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
Editing Common Sense in Transformers , author=. Proceedings of the 2023 Conference on Empirical Methods in Natural Language Processing , pages=
2023
-
[16]
Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
Forgetting before Learning: Utilizing Parametric Arithmetic for Knowledge Updating in Large Language Models , author=. Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[17]
Advances in neural information processing systems , volume=
Locating and editing factual associations in gpt , author=. Advances in neural information processing systems , volume=
-
[18]
Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
Contrastive Decoding: Open-ended Text Generation as Optimization , author=. Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[19]
Findings of the Association for Computational Linguistics: NAACL 2025 , pages=
Alleviating Hallucinations of Large Language Models through Induced Hallucinations , author=. Findings of the Association for Computational Linguistics: NAACL 2025 , pages=
2025
-
[20]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Improving factuality in large language models via decoding-time hallucinatory and truthful comparators , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[21]
Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024) , pages=
A Frustratingly Simple Decoding Method for Neural Text Generation , author=. Proceedings of the 2024 Joint International Conference on Computational Linguistics, Language Resources and Evaluation (LREC-COLING 2024) , pages=
2024
-
[22]
2024 IEEE International Conference on Smart Internet of Things (SmartIoT) , pages=
Freeze-CD: Alleviating Hallucination of Large Language Models via Contrastive Decoding with Local Freezing Training , author=. 2024 IEEE International Conference on Smart Internet of Things (SmartIoT) , pages=. 2024 , organization=
2024
-
[23]
The Twelfth International Conference on Learning Representations , year=
DoLa: Decoding by Contrasting Layers Improves Factuality in Large Language Models , author=. The Twelfth International Conference on Learning Representations , year=
-
[24]
Advances in Neural Information Processing Systems , volume=
Unchosen experts can contribute too: Unleashing moe models’ power by self-contrast , author=. Advances in Neural Information Processing Systems , volume=
-
[25]
Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
The Benefits of Bad Advice: Autocontrastive Decoding across Model Layers , author=. Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[26]
Proceedings of the 31st International Conference on Computational Linguistics , pages=
Entropy Guided Extrapolative Decoding to Improve Factuality in Large Language Models , author=. Proceedings of the 31st International Conference on Computational Linguistics , pages=
-
[27]
Neural computation , volume=
Adaptive mixtures of local experts , author=. Neural computation , volume=. 1991 , publisher=
1991
-
[28]
Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
DeepSeekMoE: Towards Ultimate Expert Specialization in Mixture-of-Experts Language Models , author=. Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[29]
Qwen1.5-MoE: Matching 7B Model Performance with 1/3 Activated Parameters" , url =
Qwen Team , month =. Qwen1.5-MoE: Matching 7B Model Performance with 1/3 Activated Parameters" , url =
-
[30]
Findings of the Association for Computational Linguistics ACL 2024 , pages=
XMoE: Sparse Models with Fine-grained and Adaptive Expert Selection , author=. Findings of the Association for Computational Linguistics ACL 2024 , pages=
2024
-
[31]
CartesianMoE: Boosting Knowledge Sharing among Experts via Cartesian Product Routing in Mixture-of-Experts , author=. Proceedings of the 2025 Conference of the Nations of the Americas Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 1: Long Papers) , pages=
2025
-
[32]
Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
HyperMoE: Towards Better Mixture of Experts via Transferring Among Experts , author=. Proceedings of the 62nd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[33]
arXiv preprint arXiv:2401.04088 , year=
Mixtral of experts , author=. arXiv preprint arXiv:2401.04088 , year=
-
[34]
Journal of Machine Learning Research , volume=
Switch transformers: Scaling to trillion parameter models with simple and efficient sparsity , author=. Journal of Machine Learning Research , volume=
-
[35]
The Twelfth International Conference on Learning Representations , year=
From Sparse to Soft Mixtures of Experts , author=. The Twelfth International Conference on Learning Representations , year=
-
[36]
CoRR , year=
MoE-Mamba: Efficient Selective State Space Models with Mixture of Experts , author=. CoRR , year=
-
[37]
Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing , pages=
LLaMA-MoE: Building Mixture-of-Experts from LLaMA with Continual Pre-Training , author=. Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing , pages=
2024
-
[38]
Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing , pages=
Null-shot prompting: rethinking prompting large language models with hallucination , author=. Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing , pages=
2024
-
[39]
Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 2: Short Papers) , pages=
Trusting your evidence: Hallucinate less with context-aware decoding , author=. Proceedings of the 2024 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (Volume 2: Short Papers) , pages=
2024
-
[40]
2008 IEEE Symposium on Interactive Ray Tracing , pages=
Fast agglomerative clustering for rendering , author=. 2008 IEEE Symposium on Interactive Ray Tracing , pages=. 2008 , organization=
2008
-
[41]
Findings of the Association for Computational Linguistics: NAACL 2025 , pages=
A Closer Look into Mixture-of-Experts in Large Language Models , author=. Findings of the Association for Computational Linguistics: NAACL 2025 , pages=
2025
-
[42]
Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
TruthfulQA: Measuring How Models Mimic Human Falsehoods , author=. Proceedings of the 60th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[43]
arXiv preprint arXiv:2110.14168 , year=
Training verifiers to solve math word problems , author=. arXiv preprint arXiv:2110.14168 , year=
-
[44]
Transactions of the Association for Computational Linguistics , volume=
Did Aristotle Use a Laptop? A Question Answering Benchmark with Implicit Reasoning Strategies , author=. Transactions of the Association for Computational Linguistics , volume=
-
[45]
2016 23rd international conference on pattern recognition (ICPR) , pages=
Branchynet: Fast inference via early exiting from deep neural networks , author=. 2016 23rd international conference on pattern recognition (ICPR) , pages=. 2016 , organization=
2016
-
[46]
Advances in Neural Information Processing Systems , volume=
Exploiting activation sparsity with dense to dynamic-k mixture-of-experts conversion , author=. Advances in Neural Information Processing Systems , volume=
-
[47]
Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics , pages=
HellaSwag: Can a Machine Really Finish Your Sentence? , author=. Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics , pages=
-
[48]
Proceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
Generating Benchmarks for Factuality Evaluation of Language Models , author=. Proceedings of the 18th Conference of the European Chapter of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[49]
IEEE Transactions on Pattern Analysis and Machine Intelligence , year=
Uni-moe: Scaling unified multimodal llms with mixture of experts , author=. IEEE Transactions on Pattern Analysis and Machine Intelligence , year=
-
[50]
Proceedings of the AAAI conference on artificial intelligence , volume=
Kam-cot: Knowledge augmented multimodal chain-of-thoughts reasoning , author=. Proceedings of the AAAI conference on artificial intelligence , volume=
-
[51]
CoRR , year=
Think More, Hallucinate Less: Mitigating Hallucinations via Dual Process of Fast and Slow Thinking , author=. CoRR , year=
-
[52]
arXiv preprint arXiv:2409.00159 , year=
LLMs Prompted for Graphs: Hallucinations and Generative Capabilities , author=. arXiv preprint arXiv:2409.00159 , year=
-
[53]
Advances in neural information processing systems , volume=
Attention is all you need , author=. Advances in neural information processing systems , volume=
-
[54]
Communication, Simulation, and Intelligent Agents: Implications of Personal Intelligent Machines for Medical Education
Clancey, William J. Communication, Simulation, and Intelligent Agents: Implications of Personal Intelligent Machines for Medical Education. Proceedings of the Eighth International Joint Conference on Artificial Intelligence (IJCAI-83)
-
[55]
Classification Problem Solving
Clancey, William J. Classification Problem Solving. Proceedings of the Fourth National Conference on Artificial Intelligence
-
[56]
, title =
Robinson, Arthur L. , title =. 1980 , doi =. https://science.sciencemag.org/content/208/4447/1019.full.pdf , journal =
1980
-
[57]
New Ways to Make Microcircuits Smaller---Duplicate Entry
Robinson, Arthur L. New Ways to Make Microcircuits Smaller---Duplicate Entry. Science
-
[58]
Clancey and Glenn Rennels , abstract =
Diane Warner Hasling and William J. Clancey and Glenn Rennels , abstract =. Strategic explanations for a diagnostic consultation system , journal =. 1984 , issn =. doi:https://doi.org/10.1016/S0020-7373(84)80003-6 , url =
-
[59]
and Rennels, Glenn R
Hasling, Diane Warner and Clancey, William J. and Rennels, Glenn R. and Test, Thomas. Strategic Explanations in Consultation---Duplicate. The International Journal of Man-Machine Studies
-
[60]
Poligon: A System for Parallel Problem Solving
Rice, James. Poligon: A System for Parallel Problem Solving
-
[61]
Transfer of Rule-Based Expertise through a Tutorial Dialogue
Clancey, William J. Transfer of Rule-Based Expertise through a Tutorial Dialogue
-
[62]
The Engineering of Qualitative Models
Clancey, William J. The Engineering of Qualitative Models
-
[63]
2017 , eprint=
Attention Is All You Need , author=. 2017 , eprint=
2017
-
[64]
Pluto: The 'Other' Red Planet
NASA. Pluto: The 'Other' Red Planet
-
[65]
Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing , pages=
Does Fine-Tuning LLMs on New Knowledge Encourage Hallucinations? , author=. Proceedings of the 2024 Conference on Empirical Methods in Natural Language Processing , pages=
2024
-
[66]
arXiv preprint arXiv:2504.10020 , year=
The Mirage of Performance Gains: Why Contrastive Decoding Fails to Address Multimodal Hallucination , author=. arXiv preprint arXiv:2504.10020 , year=
-
[67]
arXiv preprint arXiv:2501.12948 , year=
Deepseek-r1: Incentivizing reasoning capability in llms via reinforcement learning , author=. arXiv preprint arXiv:2501.12948 , year=
-
[68]
arXiv preprint arXiv:2303.08774 , year=
Gpt-4 technical report , author=. arXiv preprint arXiv:2303.08774 , year=
-
[69]
Findings of the Association for Computational Linguistics: NAACL 2025 , pages=
Improve Decoding Factuality by Token-wise Cross Layer Entropy of Large Language Models , author=. Findings of the Association for Computational Linguistics: NAACL 2025 , pages=
2025
-
[70]
MathQA: Towards Interpretable Math Word Problem Solving with Operation-Based Formalisms , author=. Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers) , pages=
2019
-
[71]
IEEE Geoscience and Remote Sensing Letters , year=
Heterogeneous mixture of experts for remote sensing image super-resolution , author=. IEEE Geoscience and Remote Sensing Letters , year=
-
[72]
Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V
Uncertainty quantification and confidence calibration in large language models: A survey , author=. Proceedings of the 31st ACM SIGKDD Conference on Knowledge Discovery and Data Mining V. 2 , pages=
-
[73]
arXiv preprint arXiv:2506.09684 , year=
Inv-Entropy: A Fully Probabilistic Framework for Uncertainty Quantification in Language Models , author=. arXiv preprint arXiv:2506.09684 , year=
-
[74]
Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
Ualign: Leveraging uncertainty estimations for factuality alignment on large language models , author=. Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
-
[75]
Findings of the Association for Computational Linguistics ACL 2024 , pages=
Improving LLM Generations via Fine-Grained Self-Endorsement , author=. Findings of the Association for Computational Linguistics ACL 2024 , pages=
2024
-
[76]
Proceedings of the AAAI Conference on Artificial Intelligence , volume=
Zero-resource hallucination detection for text generation via graph-based contextual knowledge triples modeling , author=. Proceedings of the AAAI Conference on Artificial Intelligence , volume=
-
[77]
Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing , pages=
Mitigating hallucinations in lm-based TTS models via distribution alignment using gflownets , author=. Proceedings of the 2025 Conference on Empirical Methods in Natural Language Processing , pages=
2025
-
[78]
Findings of the Association for Computational Linguistics: ACL 2025 , pages=
DPGA-TextSyn: Differentially Private Genetic Algorithm for Synthetic Text Generation , author=. Findings of the Association for Computational Linguistics: ACL 2025 , pages=
2025
-
[79]
GTA: Towards generative text-to-audio retrieval via multi-scale tokenizer , author=. Proc. Interspeech , pages=
-
[80]
Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
CART: A Generative Cross-Modal Retrieval Framework with Coarse-To-Fine Semantic Modeling , author=. Proceedings of the 63rd Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers) , pages=
discussion (0)
Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.