TL;DR
Large language models often provide confident but incorrect answers when uncertain, which is a significant issue for small language models (SLMs). The authors developed a technique called Second Guess, a lightweight prompting method that encourages models to abstain from answering when unsure.
✦ Why It Matters
Engineers can implement Second Guess to improve uncertainty detection in small language models, enhancing their reliability.
Key Takeaways
How It Works
Second Guess leverages the observation that confident models consistently select the correct answer, while uncertain models exhibit variability. By introducing an 'I don't know' option, the technique prompts models to abstain when they lack confidence, thus improving overall answer reliability.
Related