Top-k
Counts tokens.
Always keeps a fixed number, regardless of the distribution's shape.
arXiv:2603.14567 · Preprint · March 2026
Top-b is an adaptive decoding strategy that contracts around confident predictions and expands when the model is genuinely uncertain.
Live probability field
t = 037
Drag uncertainty. Watch the viability band breathe.
The model's confidence governs its generative freedom.
Natural language shifts between sharp, near-deterministic states and broad, ambiguous ones. A fixed rule applies the same strictness to both.
Top-k
Always keeps a fixed number, regardless of the distribution's shape.
Top-p
Keeps tokens until a fixed cumulative probability is reached.
Top-b
Anchors to the mode, then scales the admissible band with entropy.
Prune distractors during reasoning.
Preserve valid creative options.
Top-b replaces a global cutoff with a local, entropy-aware constraint. Every token step recalculates how far the sampler may move from the mode.
Measure uncertainty
Shannon entropy tells us whether the next-token distribution is sharp or flat.
Scale the band
Normalized entropy continuously expands the bandwidth from b0 toward 2b0.
Keep the viable set
Only tokens within the entropy-regulated relative band are renormalized and sampled.
Conceptual decoder
Entropy is a vector operation over the vocabulary; the paper argues its cost is negligible relative to transformer attention.
01 entropy = -sum(p * log(p))
02 h_norm = entropy / log(vocab_size)
03 band = base_band * (1 + h_norm)
04 keep = p >= max(p) * (1 - band)
05 next = sample(normalize(p[keep]))
On GPQA and preliminary GSM8K evaluation, Top-b reduces generation entropy and inter-run variance while retaining competitive reasoning accuracy.
GPQA average entropy
0.1579 Lowest among 7 tested strategiesGPQA accuracy
22.85% Competitive while constraining entropyGSM8K accuracy
26.80% Highest among the 4 listed methodsGSM8K variance
1.136 × 10-4 About 9.9× lower than Top-pGPQA / average sequence entropy
Lower is better ↓
Accuracy and entropy are reported from the paper's GPQA evaluation. GSM8K uses a preliminary 1,000-sample Chain-of-Thought split.
In low-entropy contexts, cumulative mass can hide a surprisingly large candidate pool. Top-b keeps only tokens close enough to the mode.
2 + 2 =
The battle that ensued…
Help me write an email…
Describe a difficult decision.
Select a figure to explore the method's structure and measured behavior.
Top-b frames autoregressive generation as a trajectory through a relative probability manifold. The sampler reacts online to local information density, pruning low-likelihood branches before drift accumulates.
Cite this work
@article{halder2026topb,
title = {Top-b: Entropic Regulation of Relative
Probability Bands in Autoregressive
Language Processes},
author = {Halder, Deepon and Dabre, Raj},
journal = {arXiv preprint arXiv:2603.14567},
year = {2026}
}
The principle
When the model knows,Read the full paper
make the path narrow.
When it wonders,
let the band breathe.