SALU: Self-Aware LLM for Unanswerability
- The paper introduces SALU, a system that enables LLMs to identify unanswerable queries by distinguishing 'known knows' from 'known unknowns' using self-knowledge metrics.
- It employs latent state probing, confidence-score-guided RLHF, and threshold-based gating to effectively flag ambiguous, underspecified, or false-premise queries.
- Benchmark evaluations across extractive QA, text-to-SQL, and conversational IR demonstrate SALU’s ability to reduce hallucination rates and improve overall query handling.
Searching arXiv for recent SALU and related unanswerability/self-awareness papers to ground the article in the current literature. Self-Aware LLM for Unanswerability (SALU) denotes a class of LLM systems designed to determine when a query should not be answered definitively and to abstain, refuse, or request clarification instead of generating a hallucinated response. In the literature, this capability is framed as a form of self-knowledge: the ability to distinguish questions a model can answer from questions it cannot, including cases where the input is underspecified, subjective, based on a false premise, or otherwise lacks a determinate answer (Yin et al., 2023). SALU also appears as a concrete end-to-end architecture for conversational information retrieval, where unanswerability detection is integrated into the generative process and refined with confidence-score-guided reinforcement learning with human feedback (RLHF) (Lin et al., 22 Jul 2025). Recent work extends the same objective to latent-state probing, activation-space steering, text-to-SQL refusal, and explicit uncertainty attribution, showing that reliable abstention is related to, but not reducible to, raw answer accuracy (Lavi et al., 26 Sep 2025, Ren et al., 15 Jan 2026, Ren et al., 19 Apr 2026, Kirichenko et al., 10 Jun 2025).
1. Conceptual foundations
The foundational notion behind SALU is that an LLM should distinguish “Known Knows” from “Known Unknows” and refrain from spurious answers when it lacks sufficient information (Yin et al., 2023). In that formulation, self-knowledge is operationalized as the score obtained when unanswerable questions are treated as the positive class. This places abstention in a standard detection framework rather than treating refusal as a purely stylistic generation behavior.
Subsequent work generalizes this idea into answerability gating. In text-to-SQL, safe refusal is formalized as a binary gating problem over a user query–schema prompt , where a frozen LLM produces hidden states and a lightweight classifier outputs ; the system refuses whenever (Ren et al., 15 Jan 2026). In extractive QA, the problem is framed as determining whether a passage contains sufficient information for answering a question, with abstention preferred when the evidence is absent (Lavi et al., 26 Sep 2025).
A further conceptual refinement distinguishes data uncertainty from model uncertainty. Data uncertainty arises when the question itself is ambiguous, underspecified, or lacks key facts; model uncertainty arises when the question is well-posed but the model cannot answer it with its current parametric knowledge or reasoning capacity (Ren et al., 19 Apr 2026). This distinction matters operationally because the appropriate downstream action differs: a data-uncertain query calls for clarification or additional context, whereas a model-uncertain query may call for retrieval, a calculator, or another external tool.
The unanswerability space described in the literature is broad. The SelfAware benchmark defines five categories—No Scientific Consensus, Imagination, Completely Subjective, Too Many Variables, and Philosophical (Yin et al., 2023). AbstentionBench organizes 20 datasets into six scenarios: Answer Unknown, False Premise, Stale, Subjective, Underspecified Context, and Underspecified Intent (Kirichenko et al., 10 Jun 2025). Other taxonomies emphasize Incomplete, Futuristic, Incorrect, and Ambiguous unknown questions (Deng et al., 2024), or functional, contextual, ethical, temporal, and ambiguity-related feasibility boundaries (Kale et al., 14 Mar 2025). Taken together, these taxonomies show that SALU is not limited to “missing evidence” in the narrow extractive-QA sense.
2. Detection signals and latent representations
Early SALU-style systems combine textual and probabilistic indicators of uncertainty. One pipeline assembles a reference set of sentences that explicitly express uncertainty, splits a model response into overlapping windows, computes embedding similarity to each , and marks the answer as uncertain if any similarity exceeds a threshold; in the same framework, Shannon entropy over the next-token distribution is used as a second signal, and the two are combined with a logical OR rule (Yin et al., 2023). A related abstention framework uses post-hoc uncertainty measures such as Negative Log-Likelihood, Predictive Entropy, Semantic Entropy, and a verbalized measure called In-Dialogue Uncertainty (InDU), which counts hedge words in the raw response text (Tomani et al., 2024). These methods require no model finetuning and operate as inference-time filters.
A more mechanistic line of work seeks unanswerability signals directly in hidden activations. In the linear-direction approach, candidate vectors are defined by a difference-in-means objective over answerable and unanswerable examples:
Candidates are selected by activation-addition steering on a held-out validation set, and the chosen vector is normalized to a direction (Lavi et al., 26 Sep 2025). A new example is then scored by projection,
0
and thresholded for classification. The same work reports that adding or ablating the direction causally controls abstention behavior, with 1–2 abstention and 3 on answerable inputs and 4 on unanswerable inputs (Lavi et al., 26 Sep 2025).
Latent probing is also central to refusal in text-to-SQL. LatentRefusal reads refusal cues from 5, applies layer normalization and mean pooling, and feeds the result into the Tri-Residual Gated Encoder (TRGE), whose block combines self-attention, MLP, and SwiGLU branches with learned scalar gates 6 (Ren et al., 15 Jan 2026). The stated role of the SwiGLU branch is to suppress high-frequency “schema boilerplate” and amplify sparse mismatch cues such as references to non-existent columns (Ren et al., 15 Jan 2026). This is a latent-signal refusal mechanism rather than an output-level instruction-following method.
Recent work also questions whether apparent self-awareness is genuinely model-side. The Approximate Question-side Effect (AQE) estimates how much hallucination prediction can be explained using only question-side information, and Semantic Compression by Answering in One word (SCAO) is proposed to amplify model-side signals by reducing open-ended generation to a one-word answer prompt (Seo et al., 18 Sep 2025). This introduces a methodological caution: strong unanswerability prediction can arise from shortcuts in question phrasing or dataset artifacts rather than introspective access to the model’s own knowledge state.
3. Architectural realizations
SALU appears in the literature in several architectural forms, ranging from post-hoc filters to end-to-end generative systems. The principal variants are summarized below.
| Paradigm | Core mechanism | Representative setting |
|---|---|---|
| Prompt- or uncertainty-based SALU | Similarity, entropy, NLL, PE, SE, or InDU thresholding | General QA abstention without finetuning (Yin et al., 2023, Tomani et al., 2024) |
| Latent-signal SALU | Hidden-state projection, linear directions, or lightweight probes | Extractive QA and text-to-SQL gating (Lavi et al., 26 Sep 2025, Ren et al., 15 Jan 2026) |
| Integrated generative SALU | Joint answer/refusal modeling with SFT and RLHF | Conversational IR and hierarchical answerability (Lin et al., 22 Jul 2025, Robinson et al., 1 Jun 2025) |
In the explicit SALU architecture for conversational information retrieval, the model is a pre-trained decoder-only transformer parameterized by 7 that consumes a sequence
8
where 9 is conversational history, 0 is the current query, and 1 are retrieved passages (Lin et al., 22 Jul 2025). Multi-task supervised fine-tuning uses separate negative log-likelihood losses for answerable QA and unanswerable abstention,
2
followed by RLHF. The RLHF stage includes a reward model trained on pairwise preferences and a PPO objective with an intrinsic confidence score
3
so that correct abstentions receive an extra bonus proportional to confidence and high-confidence hallucinations receive heavier penalties (Lin et al., 22 Jul 2025).
A related integrated design is Reinforced Unanswerability Learning (RUL). Here a pre-trained sequence-to-sequence LLM 4 is augmented with a discriminative unanswerability head on top of the 5 or pooled embedding and a hierarchical attention mechanism that aggregates answerability from sentence to paragraph to ranking level (Robinson et al., 1 Jun 2025). Stage 1 optimizes
6
where 7 is binary cross-entropy for answerability prediction and 8 is negative log-likelihood for answer or refusal generation; Stage 2 introduces a reward model and PPO with KL regularization (Robinson et al., 1 Jun 2025).
Other SALU-like systems emphasize data generation and explanation quality rather than latent gating. Self-Align uses a two-stage class-aware self-augmentation pipeline to synthesize unknown question–response pairs, disparity-driven self-curation with a threshold 9, and supervised finetuning on curated refusals with explanations (Deng et al., 2024). This line of work is motivated by the claim that an LLM should not only refuse but also explain why a question is unanswerable.
4. Benchmarks and evaluation protocols
Benchmark construction has become a central component of SALU research because abstention quality is highly sensitive to the type of unanswerability being measured. The SelfAware dataset contains 3,369 questions, including 1,032 unanswerable and 2,337 answerable items, with unanswerable instances drawn from five categories and answerable counterparts matched from SQuAD, HotpotQA, and TriviaQA via SimCSE nearest-neighbor matching (Yin et al., 2023). The final 1,032 unanswerables were selected by three expert annotators with 100% agreement on the final set (Yin et al., 2023).
Task-specific SALU datasets are also used. The conversational-IR SALU paper introduces C-IR_Answerability, built from multiple Chinese QA sources and synthetic negatives, with about 100K examples split evenly between answerable and unanswerable and annotated at sentence-, paragraph-, and ranked-list-level answerability (Lin et al., 22 Jul 2025). RUL uses Enhanced-CAsT-Answerability (ECA), a dataset of about 12K query–context pairs with sentence-level labels, paragraph-level and ranking-level derived labels, and a ground-truth response that is either an answer or a refusal (Robinson et al., 1 Jun 2025).
Evaluation has broadened beyond binary abstention. UA-Bench contains over 3,500 questions from six datasets spanning knowledge-intensive and reasoning-intensive tasks, and requires models to produce either a correct answer, <DATA_UNCERTAIN>, or <MODEL_UNCERTAIN> (Ren et al., 19 Apr 2026). AbstentionBench assembles 20 datasets across six scenarios and emphasizes abstention recall on truly abstain-worthy questions while separately measuring answer accuracy on non-abstain questions (Kirichenko et al., 10 Jun 2025). Abstain-QA provides a black-box multiple-choice evaluation with 2,900 zero-shot items, a built-in “I Don’t Know/None of the Above” option, and the Answerable–Unanswerable Confusion Matrix (AUCM), from which Abstention Rate, Answerable Accuracy, Unanswerable Accuracy, and Precision are derived (Madhusudhan et al., 2024).
The metric landscape is correspondingly diverse. Standard formulations use precision, recall, and 0 with unanswerable as the positive class (Yin et al., 2023). Latent-direction work reports Macro-1, class-wise precision and recall, steering scores, AUC of the projection score, and abstention–intervention curves as a function of steering strength 2 (Lavi et al., 26 Sep 2025). UA-Bench introduces DU-3, MU-4, and AVG-5 (Ren et al., 19 Apr 2026). “Line of Duty” evaluates self-set feasibility boundaries through Accuracy of Feasibility Boundary 6, Foresight 7, Insight 8, and Confidence Balance 9 (Kale et al., 14 Mar 2025). This metric heterogeneity reflects a substantive methodological difference: some SALU systems measure refusal correctness, while others measure introspective consistency or source attribution.
5. Empirical results
The empirical record shows that SALU-like behavior is attainable but remains incomplete. In the SelfAware study over 20 LLMs, instruction tuning improves self-knowledge relative to base prompting, in-context learning further improves it, and GPT-4-0314 reaches 0, while the human benchmark on 100 samples is 1 (Yin et al., 2023). This gap is large enough that the paper explicitly describes model self-knowledge as promising but still substantially below human proficiency (Yin et al., 2023).
Latent-state methods report strong but nuanced gains. For linear unanswerability directions, same-dataset performance reaches direction-based 2 on Llama-3, compared with classifier 3; on unseen datasets without calibration, classifier recall drops by about 4 whereas direction recall drops by about 5 (Lavi et al., 26 Sep 2025). Threshold calibration improves cross-dataset 6 by 7–8 and reduces the gap to same-dataset performance to about 9; the same directions also extend beyond extractive QA to SelfAware, with calibrated 0–1, and to CREPE, with calibrated 2–3 (Lavi et al., 26 Sep 2025). In text-to-SQL, LatentRefusal raises average 4 to 5 on both 8B backbones across four benchmarks while adding about 2 milliseconds of probe overhead (Ren et al., 15 Jan 2026).
Integrated training pipelines report the largest end-to-end gains on their target tasks. In conversational IR, SALU achieves Unanswer Accuracy/Precision/Recall/6, Answerable QA 7, and Overall Accuracy 8 on the test set (Lin et al., 22 Jul 2025). The same study reports hallucination rates on unanswerable queries of 9 for a QA-only LLM, 0 for QA LLM + BERT-C, 1 for SALU without RLHF, and 2 for SALU with RLHF (Lin et al., 22 Jul 2025). In RUL, unanswerability accuracy rises to 3 at sentence level, 4 at paragraph level, and 5 at ranking level; generation metrics include answerable-question 6 and Refusal Rate 7 (Robinson et al., 1 Jun 2025).
Inference-time abstention remains attractive because it avoids retraining, but the resulting performance is lower and more sensitive to calibration. Uncertainty-Based Abstention reports that, on RLHF models, semantic-entropy rejection of the top 8 most uncertain TriviaQA samples raises accuracy from 9 to 0, and at 1 rejection accuracy rises by 2 to about 3 (Tomani et al., 2024). On unanswerability, InDU thresholding detects about 4 of unanswerable questions while wrongly refusing only 5 of answerable ones, with AUROC about 6 for RLHF models versus about 7 for base models (Tomani et al., 2024). In the black-box Abstain-QA setting, Chain-of-Thought with an Abstain Clause is reported as the strongest prompting strategy, substantially increasing both unanswerable accuracy and answerable accuracy for GPT-4-Turbo and smaller models (Madhusudhan et al., 2024).
At the benchmark level, abstention is still described as unsolved. AbstentionBench reports that reasoning fine-tuning degrades abstention by 8 on average, even on math and science domains, and that scaling Llama models from 8B to 70B and beyond changes mean recall by less than 1 percentage point (Kirichenko et al., 10 Jun 2025). Qwen 2.5 32B reaches the highest mean abstention recall at 9, but no model dominates all 20 datasets (Kirichenko et al., 10 Jun 2025). This is consistent with UA-Bench, which finds that even state-of-the-art models struggle to discriminate data uncertainty from model uncertainty and that high answer accuracy does not necessarily imply strong uncertainty attribution ability (Ren et al., 19 Apr 2026).
6. Interpretation, failure modes, and open problems
A central methodological issue is whether SALU systems are genuinely introspective. AQE-based analysis argues that much of the reported success in hallucination prediction arises from question-side shortcuts rather than model-side introspection, and that hidden-state probes can overestimate self-awareness when datasets contain superficial cues (Seo et al., 18 Sep 2025). This does not invalidate latent SALU methods, but it does imply that evaluation must control for question-side artifacts if the goal is to measure self-awareness rather than shortcut exploitation. A plausible implication is that benchmark design and representation auditing are as important as the refusal mechanism itself.
Another failure mode concerns the granularity of abstention. Prior work often treats refusal as a generic “I don’t know,” but UA-Bench argues that SALU should attribute uncertainty as DU versus MU because the correct downstream behavior differs (Ren et al., 19 Apr 2026). Similarly, Self-Align argues that refusal alone is insufficient and that the model should provide class-aware explanations for unknown questions such as ambiguity, futurity, incorrectness, or incompleteness (Deng et al., 2024). These works suggest that SALU is evolving from binary refusal into a structured decision layer over clarification, tool use, and explanatory abstention.
Studies of intrinsic consistency show additional weaknesses. In “Line of Duty,” even frontier models reach only about 0 on consistency between self-generated feasibility boundaries and later self-classification, with contextual awareness and temporal perception emerging as the weakest self-knowledge types (Kale et al., 14 Mar 2025). The same study reports confidence imbalance, with functional-ceiling tasks showing strong overconfidence and contextual or ambiguity-related tasks showing conservatism (Kale et al., 14 Mar 2025). Separately, the Self-Challenge framework produces SC-G4, a benchmark of 1,835 instances over eight error patterns, on which GPT-4 answers only 1 correctly; those patterns also challenge Claude-3 and Llama-3 and are reported as not fully resolved through fine-tuning (Chen et al., 2024). The eight discovered patterns include assumption of existence, complex counting, logical paradoxes, temporal ambiguity, and text manipulation (Chen et al., 2024).
The current literature therefore presents SALU as an unresolved systems problem rather than a settled module. Prompting can help, post-hoc uncertainty can help, latent probes can help, and integrated SFT+RLHF systems can reduce hallucination substantially, but generalization across domains, disentanglement of question-side and model-side signals, attribution of uncertainty source, and robustness under reasoning-oriented post-training remain open (Kirichenko et al., 10 Jun 2025, Seo et al., 18 Sep 2025, Ren et al., 19 Apr 2026). This suggests that the mature form of SALU is likely to combine calibrated latent detection, explicit uncertainty attribution, and response policies that choose among abstention, clarification, explanation, and external tool invocation rather than treating all non-answerable cases as a single refusal class.