Pair each decoding strategy with its determinism and diversity profile.
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Greedy picks the argmax token every step (deterministic). Temperature sampling draws stochastically (diverse). Temperature 0 collapses to greedy.
Imagine guessing the next word in a sentence. The safe strategy is to always pick the single most likely word. You get the same answer every time, but the writing feels stiff and repetitive. The creative strategy is to roll a weighted die over several likely words and pick based on the roll. The result varies and feels more natural, but you might roll an unlucky word once in a while. A knob called temperature controls how spread out the die is. Crank it to zero and the die only shows one face, the safe choice. Raise it and the die spreads out, getting wilder. Beam search keeps several whole sentences alive in parallel and picks the best at the end, which costs more time but finds smoother sequences.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
5 min: define greedy as argmax, walk through temperature scaling and why T=0 collapses to greedy, contrast top-p and top-k as tail-suppression filters, position beam search in its remaining niches, then close on production settings per task type.
Real products, models, and research that use this idea.
What an interviewer would ask next. Try answering before peeking at the approach.
Red flags and common mistakes that signal junior thinking. Click to expand.
Treating temperature as quality: low equals good, high equals bad. Temperature is a creativity vs determinism knob; the right value depends on the task, and zero is wrong for creative writing.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.