INQUIRING LINE

Instead of trusting an AI's answer on its own, could you judge it by how it did on similar past tasks?

What makes task similarity the right retrieval key for confidence calibration?

This explores why checking how a model did on similar past tasks might be a better way to judge whether its current answer is trustworthy than looking at the current answer alone. The corpus supports the history-lookup half well, but it doesn't directly argue that task similarity is the right key.


This explores why checking how a model did on similar past tasks might be a better way to judge its current answer than looking at that answer alone. The corpus is strong on the history-lookup half and thin on the task-similarity half. The closest note, Can past performance predict when a model will be right?, describes XConf, which retrieves past episodes with similar *confidence levels*, not similar tasks. It then reads off how often those episodes turned out right. That matches ten-sample self-consistency at a tenth of the cost. Ablations show the gain comes entirely from the stored outcomes, not from the retrieval prompt.

The case for why task type should matter is indirect but real. A confidence number means different things in different settings. ProSA finds that confidence and robustness track the kind of task: objective tasks, larger models and few-shot examples all push confidence up Does model confidence predict robustness to prompt changes?. So a 0.8 on an arithmetic question and a 0.8 on an open-ended one are not the same claim. Miscalibration also comes from training. Binary-reward RL rewards confident guessing because a confident wrong answer costs nothing Does binary reward training hurt model calibration?, and confidence-as-reward can partly reverse that Can model confidence work as a reward signal for reasoning?. Both are global fixes applied at training time. A history lookup corrects locally, in the neighborhood where the model has a track record.

The broader retrieval notes show that the key you match on often matters more than the retrieval step itself. StructRAG routes by what the task demands and beats uniform retrieval Can routing queries to task-matched structures improve RAG reasoning?. Rationale-driven selection beats plain similarity re-ranking by 33 percent Can rationale-driven selection beat similarity re-ranking for evidence?. Decomposition granularity, not vocabulary match, is the main bottleneck for retrieving skills What blocks skill retrieval in task decomposition?. Read together, task similarity is the right key only when the thing you want to transfer, how reliable the model is here, depends on the type of task rather than its wording. Surface similarity can mislead in both directions.

Two notes complicate the picture. Instruction tuning appears to teach the shape of the output space, not task understanding Does instruction tuning teach task understanding or output format?. If so, a model's sense of 'same task' may really mean 'same kind of answer', which would explain why XConf keys on confidence itself as a compact fingerprint of the situation. And step-level confidence catches reasoning breakdowns that a whole-trace average hides Does step-level confidence outperform global averaging for trace filtering?. A key at the whole-task level could hide the same kind of local failure. No note here compares task-similarity keys against confidence-similarity keys directly, so which one wins is still open.


Sources 9 notes

Can past performance predict when a model will be right?

XConf matches ten-sample self-consistency at a tenth of the cost by retrieving the model's past episodes with similar confidence levels and reading their historical success rates. Ablations show the signal depends entirely on stored outcomes, not on the retrieval prompt itself.

Does model confidence predict robustness to prompt changes?

ProSA found that when models are highly confident, they resist prompt rephrasing; low confidence causes major output swings. Larger models, few-shot examples, and objective tasks all correlate with higher confidence and greater robustness.

Does binary reward training hurt model calibration?

Binary correctness rewards incentivize high-confidence guessing because they don't penalize confident wrong answers. Adding the Brier score as a second reward term mathematically guarantees joint optimization of accuracy and calibration without trade-off.

Can model confidence work as a reward signal for reasoning?

RLSF uses answer-span confidence to rank reasoning traces, creating synthetic preferences that strengthen step-by-step reasoning while reversing RLHF's calibration degradation—without requiring human labels or external verifiers.

Can routing queries to task-matched structures improve RAG reasoning?

StructRAG demonstrates that selecting knowledge structure type based on query demands—via DPO-trained router choosing among tables, graphs, algorithms, catalogues, and chunks—improves knowledge-intensive reasoning over standard retrieval. The approach grounds this in cognitive load and cognitive fit theory from cognitive science.

Show all 9 sources
Can rationale-driven selection beat similarity re-ranking for evidence?

METEORA uses LLM-generated rationales with flagging instructions to select evidence, achieving 33% better accuracy with 50% fewer chunks than similarity re-ranking across legal, financial, and academic domains. The method also improves adversarial robustness substantially.

What blocks skill retrieval in task decomposition?

Standard LLM decomposition reaches only 34% step-level recall, gating retrieval success. Correcting step count recovers 75% of gains in iterative methods, shifting the bottleneck to representation-level reranking rather than vocabulary alignment.

Does instruction tuning teach task understanding or output format?

Models trained on semantically empty or deliberately incorrect instructions achieve comparable performance to those trained on full correct instructions, achieving 43% vs random baseline 42.6%. The semantic content of instructions appears largely irrelevant; what transfers is knowledge of the output space.

Does step-level confidence outperform global averaging for trace filtering?

Local step-level confidence catches reasoning breakdowns that global averaging masks and enables early stopping before traces complete. This approach achieves comparable accuracy gains to naive majority voting with far fewer generated traces, proving trace quality matters more than quantity.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.