A Call for Clarity in Beam Search: How It Works and When It Stops
Jungo Kasai, Keisuke Sakaguchi, Ronan Le Bras, Dragomir Radev, Yejin Choi, Noah A. Smith
TL;DR
This paper uncovers a hidden FCFS stopping rule in popular beam decoding implementations and introduces a simple one-line modification, the patience factor $p$, to decouple search breadth from depth. By generalizing the stopping criterion, the authors enable deeper or shallower search at fixed beam size $k$ and demonstrate performance gains on news summarization and machine translation with negligible slowdown. They also show that different beam decoding variants can yield large performance differences, underscoring the need for clear reporting of decoding strategies in research. The work offers a practical, minimal-change solution and calls for standardizing beam search descriptions to improve reproducibility.
Abstract
Text generation with beam search has proven successful in a wide range of applications. We point out that, though largely overlooked in the literature, the commonly-used implementation of beam decoding (e.g., Hugging Face Transformers and fairseq) uses a first come, first served heuristic: it keeps a set of already completed sequences over time steps and stops when the size of this set reaches the beam size. Based on this finding, we introduce a patience factor, a simple modification to this beam decoding implementation, that generalizes the stopping criterion and provides flexibility to the depth of search. Empirical results demonstrate that adjusting this patience factor improves decoding performance of strong pretrained models on news text summarization and machine translation over diverse language pairs, with a negligible inference slowdown. Our approach only modifies one line of code and can be thus readily incorporated in any implementation. Further, we find that different versions of beam decoding result in large performance differences in summarization, demonstrating the need for clarity in specifying the beam search implementation in research work. Our code will be available upon publication.
