Silent guessing causes harder-to-notice errors than explicit fallback
Aliases: silent guessing · plausible command · unnoticed error
What it is
When evidence is insufficient, silently choosing a plausible interpretation causes errors users may never notice, while explicit fallback prompts recovery. Failure usually invites retry; false fusion may execute immediately—deleting the wrong item, changing quantity, entering the wrong mode, or sending to the wrong recipient.
Why it happens
Silent guessing turns recognition uncertainty into a definite interface state. Seeing a response, users assume their whole intention was understood; when the result is close to expectation, they attribute the difference to memory or interface change. The guess also contaminates later dialogue state: the wrong current object, mode, or parameter is inherited by the next command, so correction drifts further away. Explicit fallback hands uncertainty back to the user; the extra step preserves the chance to repair.
Studying it
Compare error discovery under silent guessing and explicit fallback after missing or conflicting auxiliary input. Record immediate correction, repetition, history checks, and anomaly reports. Variables include similarity between the guess and intent, consequence level, whether interpretation is shown, and whether state is inherited by later commands. Outcomes should include time-to-detection, recovery steps, task loss, and subsequent trust; retention time reveals more than first-error rate.
Where it stops holding
Low-risk, reversible guessing is not always harmful. Autocomplete candidates, search suggestions, and live filters are explicitly provisional and corrected by further typing. But silent merging is inappropriate for invisible, irreversible, externally visible, or state-changing actions. If a system must offer the most likely result, it should also show evidence and alternatives rather than disguise the guess as confirmation.
Applying it
- Grade actions by consequence; prohibit silent fusion for irreversible or externally visible actions.
- Keep permitted suggestions visually provisional, with evidence, alternatives, and an edit path.
- Track user correction paths in failure logs and include the cost of “guess, then fix” in evaluation.
- Verification: ask users to describe what just happened without coaching, then measure how many steps pass before an error is noticed.
Related
- Within the group: D5.08.1 When fusion fails, fall back to the literal reading of one modality · D5.08.4 Frequent fallback indicates that the fusion window or recognizer needs adjustment
- Adjacent: D5.07.3 Too wide a window fuses unrelated input · D4.07.3 Feedback should identify the input or state it concerns
- Search terms:
silent inference·plausible command·error discoverability