The replay — how a model decides.
It works like a cricket video umpire: weigh every clue, then commit to a call.
When a call is too close for the on-field umpires, cricket sends it upstairs — to a third umpire watching the replays. Did the batter nick the ball through to the keeper, or not? No one clue answers it, so the umpire weighs several at once: the deviation (did the ball change course as it passed the bat?), snicko (a sound trace — a sharp spike means contact), hot-spot (a heat camera — a bright mark where ball met bat), and the bat–pad gap (so a noise off the pad isn't mistaken for an edge).
The clues rarely agree cleanly. The umpire weighs them together and always commits — OUT or NOT OUT — surely when they line up, barely when they don't. Upstairs there is no "leave it": a call has to be made.
A large language model (or LLM) — the AI behind tools like ChatGPT — decides the same way, only its call is a single word. Given the text so far, it weighs everything it learned in training, puts odds on every word that could come next, and commits to one — then does it again for the word after that. The same instinct as the umpire, made one word at a time.
Review the three close calls and watch the umpire weigh the evidence — then see what happens when the clues disagree.
You hand over the inputs. The umpire decides.
You don't write the weighing — you assemble the evidence and ask. The umpire weighs it with an eye shaped by seasons of cricket, and hands back a call, along with the odds it put on that call.
# Hand the umpire the evidence — you don't code the weighing. verdict = umpire.review( snicko="faint sound", hotspot="no mark", deviation="no clear deviation", bat_pad="small gap", ) # verdict.call → "OUT" · verdict.confidence → 0.54 (the odds on that call)
Weigh everything, commit to one call.
Three deliveries, three different bundles of evidence. A spike alone didn't decide it — the umpire weighed the snicko against the hot-spot, the deviation, and the bat–pad gap, and always committed: a confident call when they agreed, a barely-there one when they didn't. It never left the decision unmade.
An LLM chooses its next word the same way. It weighs the words so far, puts odds on every candidate, and commits to one — sure when the odds pile onto a front-runner, only just when they're split. Then it repeats, word after word.