Abstract
Decoding for many NLP tasks requires an effective heuristic algorithm for approximating exact search because the problem of searching the full output space is often intractable, or impractical in many settings. The default algorithm for this job is beam search—a pruned version of breadth-first search. Quite surprisingly, beam search often returns better results than exact inference due to beneficial search bias for NLP tasks. In this work, we show that the standard implementation of beam search can be made up to 10x faster in practice. Our method assumes that the scoring function is monotonic in the sequence length, which allows us to safely prune hypotheses that cannot be in the final set of hypotheses early on. We devise effective monotonic approximations to popular nonmonontic scoring functions, including length normalization and mutual information decoding. Lastly, we propose a memory-reduced variant of best-first beam search, which has a similar beneficial search bias in terms of downstream performance, but runs in a fraction of the time.
1 Introduction
Beam search is a common heuristic algorithm for decoding structured predictors (e.g., neural machine translation models and transition-based parsers). Because of the widespread adoption of recurrent neural networks and other non-Markov models, traditional dynamic programming solutions, such as the Viterbi algorithm (Viterbi, 1967), are prohibitively inefficient; this makes beam search a common component of many state- of-the-art NLP systems. Despite offering no formal guarantee of finding the highest-scoring hypothesis under the model, beam search yields impressive performance on a variety of tasks— unexpectedly providing a beneficial search bias over exact search for many tasks (Stahlberg and Byrne, 2019).
Within NLP, most research on beam search has focused on altering the log-probability scoring function to return improved results, for example, higher bleu scores (Wu et al., 2016; Murray and Chiang, 2018; Shu and Nakayama, 2018; Yang et al., 2018) or a more diverse set of outputs (Vijayakumar et al., 2016). However, little work has been done to speed up beam search itself. Filling this gap, this paper focuses on reformulating beam search in order to make it faster. We propose best-first beam search, a prioritized version of traditional beam search that is up to an order of magnitude faster in practice while still returning the same set of results. We additionally discuss an even faster heuristic version of our algorithm that further limits the number of candidate solutions, leading to a smaller memory footprint while still finding good solutions.
Concretely, we offer a novel interpretation of beam search as an agenda-based algorithm where traditional beam search is recovered by utilizing a length-based prioritization scheme. We prove that a specific best-first prioritization scheme, as in classic A* search (Hart et al., 1968), allows for the elimination of paths that will necessarily fall off the beam; for many scoring functions, including standard log-probability scoring, we can still guarantee the same k hypotheses as traditional beam search are returned. Indeed, our algorithm returns beam search’s top hypothesis the first time it encounters a complete hypothesis, allowing the program to stop early. Further, we discuss the application of best-first beam search to several popular scoring functions in the literature (He et al., 2016; Li et al., 2016); this demonstrates that we have a general framework for adapting a variety of rescoring methods and alternate objectives to work with our algorithm.
Empirically, we compare best-first beam search to ordinary beam search on two NLP sequence-to-sequence tasks: neural machine translation (NMT) and abstractive summarization (AS). On NMT, we find that our algorithm achieves roughly a 30% speed-up over traditional beam search with increased gains for larger beams (e.g., ≈ 10x for a beam of 500). We find similar results hold for AS. Finally, we show that our memory-reduced version, which limits the number of active hypotheses, leads to additional speed-ups over best-first beam search across beam sizes while maintaining similar bleu scores.
2 Sequence Transduction
Our work focuses on sequence-to-sequence transduction: predicting an output sequence given an input sequence. One such task is machine translation, wherein a source-language sentence is mapped (“transduced”) to a target-language sentence. While our exposition focuses on sequence-to-sequence prediction, our algorithms are directly applicable to any sequential structured prediction model, such as transition-based parsers (Nivre et al., 2008) and sequence taggers (McCallum et al., 2000; Lafferty et al., 2001).
Notation.
Scoring.
Beam search.
The worst-case running time of exactly computing (1) is exponential in nmax; namely, .3 Beam search is a commonly used approximation to (1) in NMT and language generation tasks. It is used in many (if not most) state-of-the-art NLP systems (Wu et al., 2016; Serban et al., 2017; Edunov et al., 2018; Yang et al., 2019). Beam search may be understood as a pruned version of the classic path-search algorithm, breadth-first search (BFS), where the breadth is narrowed to the beam size k. Pseudocode is given in (1).
Although, beam search does not solve (1) exactly, it is a surprisingly useful approximation for NLP models. In many settings, beam search outperforms exact methods in terms of downstream evaluation (Koehn and Knowles, 2017; Stahlberg and Byrne, 2019). For the remainder of this paper, we will pivot our attention away from exact solutions to (1) to exact solutions to the beam search output.
k-optimal hypothesis. We say that a hypothesis is k-optimal if it is the top hypothesis returned by beam search with beam size k.
3 A* Beam Search
We develop a meta-algorithm that is parameterized by several choice points. Our general search algorithm for decoding (Alg. 2) takes an arbitrary prioritization function, stopping criterion, and search heuristic. With certain values of these attributes, we recover many common search algorithms: greedy search, beam search, best-first search (Dijkstra, 1959), and A* search (Hart et al., 1968). We propose an alternate prioritization function for beam search that allows for faster decoding while still returning the same k-optimal set of hypotheses.
3.1 Choice Points of 2
Here we review the components of our meta algorithm (the highlighted sections in Alg. 2) that can be varied to recover different search strategies:
⧁ : y ×y →{True, False}. A priority queue maintains the set of active hypotheses. Elements in this set are ordered according to a generic comparator ⧁. When its peek() (or pop()) methods are called, the first element ordered by ⧁ is returned (or returned and removed).
stop(⋅) : Collection〈y〉→{True, False}. The algorithm terminates according to configurable stopping criterion based on the current set of elements in .
k ∈ℕ>0. Only k paths of a given length are considered. If the algorithm has already encountered k paths of a given length, subsequent paths of that length are not evaluated. If we take , we recover unpruned search algorithms.
h(⋅,⋅) : x ×y →ℝ. A heuristic function h(x,y) can be used during search to change the priority in which paths are evaluated. We note that with pruning, a heuristic may change the value of the k-optimal hypothesis (see § 4.1).
Recovering Beam Search.
To recover beam search from Algorithm 2, we use the choice points from Table 1. Explicitly, the comparator prioritizes hypotheses from earlier time steps first, but breaks ties with the hypotheses’ scores under the model. We note that while the standard algorithm for beam search does not prioritize by score within a time step, variations of the algorithm use this strategy so they can use early-stopping strategies (Klein et al., 2017; Huang et al., 2017). Beam search terminates once either all hypotheses end in eos or the queue is empty (i.e., when the k beams have been extended nmax time steps but none end in eos). In the second case, no complete hypothesis is found. Finally, choosing the heuristic h(x,y) = 0 makes the algorithm a case of standard best-first search.
. | Beam Search . | Best-First Beam Search . | A* Beam Search . |
---|---|---|---|
① | 〈sh,y〉⧁〈sh′,y′〉 ⇔ |y| < |y|′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ |
② | |||
③ | k = beam size | k = beam size | k = beam size |
④ | 0 | 0 | any admissible heuristic |
Breadth-First Search | Best-First Search | A* Search | |
① | 〈sh,y〉⧁〈sh′,y′〉 ⇔ |y| < |y|′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ |
② | |||
③ | |||
④ | 0 | 0 | any admissible heuristic |
. | Beam Search . | Best-First Beam Search . | A* Beam Search . |
---|---|---|---|
① | 〈sh,y〉⧁〈sh′,y′〉 ⇔ |y| < |y|′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ |
② | |||
③ | k = beam size | k = beam size | k = beam size |
④ | 0 | 0 | any admissible heuristic |
Breadth-First Search | Best-First Search | A* Search | |
① | 〈sh,y〉⧁〈sh′,y′〉 ⇔ |y| < |y|′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ | 〈sh,y〉⧁〈sh′,y′〉 ⇔ sh > sh′ |
② | |||
③ | |||
④ | 0 | 0 | any admissible heuristic |
Note that, while standard beam search returns a set, Alg 2 only returns the k-optimal hypothesis. This behavior is sufficient for the majority of use cases for beam search. However, if the full set of k hypotheses is desired, the stopping criterion can be changed to evaluate true only when k hypotheses are complete. Under the other beam search settings, this would probably return the same set as beam search (see § 4.1).
Recovering A*.
To recover the traditional A* search algorithm, we use the comparator that prioritizes hypotheses with a higher score first; ties are broken by hypothesis length. The algorithm terminates when the first item of contains an eos. If we take , best-first beam search recovers A*. Any admissible heuristic may be used for h(x,y).
Admissible Heuristic. A heuristic h is admissible if it never overestimates the future cost—or underestimates the future reward—of continuing down a path.
3.2 Best-First Beam Search
In its original form, A* search may traverse the entire graph, which as discussed earlier, is intractable for many decoding problems. While standard beam search addresses this problem by limiting the search space, it still has computational inefficiencies—namely, we must analyze k hypotheses of a given length (i.e., time step), regardless of how poor their scores may already be, before considering longer hypotheses. However, prioritization by length is not strictly necessary for finding a k-optimal hypothesis. As is done in A*, we can use score as the prioritization scheme and still guarantee optimality–or k-optimality–of the paths returned by the algorithm.
We define A* beam search as the A* algorithm where breadth is limited to size k. Further, we define best-first beam search as the case of A* beam search when no heuristic is used (see Table 1 for algorithm settings). This formulation has two large advantages over standard beam search: (1) we gain the ability to remove paths from the queue that are guaranteed to fall off the beam and (2) we can terminate the algorithm the first time a complete hypothesis is encountered. We can therefore reduce the computation required for decoding while still returning the same set of results.
The mathematical property that makes this short-circuiting of computation possible is the monotonicity of the scoring function. Note that not all scoring functions are monotonic, but many important ones are, including log-probability (5). We discuss effective approximations for popular non-monotonic scoring functions in § 5.
Clearly, (5) is a monotonic scoring function in t because scores2s ≤ 0, that is, the score of a partial hypothesis y<t can only decrease if we extend it by another symbol yt. This implies we can order our search according to score(x,y<t) without fear of overlooking a hypothesis whose score would increase over time. Furthermore, once k hypotheses of a given length t have been evaluated, we no longer need to consider any hypothesis where |y| < t because such hypotheses would necessarily fall off the beam. We can therefore remove such hypotheses from the queue and avoid wasting computational power on their evaluation. We prove this formally in § 4.1.
Another implication of the monotonicity property of score is that we may terminate best-first beam search once a hypothesis containing eos is encountered (i.e., the end state is found). If the full set of k complete hypotheses is desired, then we simply continue until k hypotheses have reached eos. We prove the k-optimality of these hypotheses under best-first beam search in § 4.1.
3.3 Implementation Details
Standard beam search forms a separate set of active hypotheses for each time step, that is, each Bt is its own set. Once Bt has been narrowed down to the top k, the previous B<t can be forgotten. However in best-first beam search, because hypotheses are not evaluated in order of time step, we may need to keep Bt from several time steps at any given point.
A naive implementation of best-first beam search is to keep a single priority queue with all the active hypotheses ordered by current score. However, each push to the queue would then require time. We can reduce this runtime by instead keeping a priority queue of beams, where the priority queue is ordered by the highest-scoring hypothesis from each beam. Further, each beam can be represented by a min-max queue (Atkinson et al., 1986); this allows us to limit the size of Bt to k: we can check in time if a hypothesis is in the top-k before adding it to Bt.
A potential inefficiency, which we avoid, comes from updating Bt+1, which we must do when evaluating a hypothesis from Bt. Because all beams are stored in a queue, there is no guarantee of the location in the queue of Bt+1. To avoid lookup, we can keep a pointer to each beam, indexed by t making the lookup . However, we acquire a term to update the queue of beams as Bt+1 may change priority.
Memory-Reduced Best-First Beam Search.
A major drawback of the A* algorithm is its memory usage, which in the worst-case is for breadth width b and maximum depth d. In the A* formulation of beam search, where the breadth width is limited to the beam size, this amounts to worst-case memory usage, where standard beam search has memory usage. Whereas in many settings the multiplicative factor may be insignificant, for neural sequence models it can be prohibitive; this is due to the large amount of memory required to store each hypothesis (e.g., prior hidden states needed to compute subsequent scores for scoring functions parameterized by neural networks).
We propose a variant of best-first beam search that limits memory usage, that is, the queue capacity. Specifically, if we reach the chosen queue capacity, we remove the worst scoring active hypothesis from the earliest active time step. This can easily be done in time given our pointer to each beam.
4 Algorithm Analysis
4.1 Correctness
We show the equivalence of the top hypothesis6 returned by beam search and best-first beam search when score(⋅,⋅) is monotonically decreasing in t, length-based prioritization is used, and the beam size k is the same for both algorithms. Without loss of generality, we hold x constant in all the following proofs.
Note that we take the terms pop and push from queue terminology. Specifically, “popping a hypothesis” refers to making it past line 7 of Alg. 2, where a hypothesis y is expanded by . In path search terminology, this would be equivalent to visiting a node and adding the edges from that node as potential paths to explore. Lastly, we refer to the priority queue used by beam search and best-first beam search as and , respectively.
Best-first beam search evaluates all hypotheses of a given length t in order of their score.
We prove the lemma by induction. The lemma holds trivially for the base case of hypotheses of length 0 because the only hypothesis of length 0 is 〈bos〉.
Now, by the inductive hypothesis, suppose Lemma 4.1 holds for all hypotheses of length < t. We will show it must also hold for hypotheses of length t. Consider two competing hypotheses: y =y<t ∘ yt and . Note that |y<t| = |y<t′| = t − 1. Suppose score(x,y′) < score(x,y).
Case 1: . Then by induction, y<t popped first and y is pushed to before y′. Because score(x,y′) < score(x,y), y will be popped before y′.
Case 2: . Then by induction, is popped first and y′ is added to before y. But, because score(x,y′) < score(x,y) ≤score(x,y<t) by monotonicity, then y<t will be popped before y′. Consequently, y will be pushed to before y′ is evaluated. By the rules of the priority queue y will be evaluated before y′.
Case 3: score(x,y′) = score(x,y). The lemma holds if either y or y′ is popped first.
By the principle of induction, Lemmma 4.1 holds for all t ∈ℕ>0.
The first hypothesis that best-first beam search pops that ends in eos is k-optimal.
Let y be the first hypothesis popped by best-first beam search ending in eos. By rules of the priority queue, no other active hypothesis has a higher score than y. Additionally, by monotonicity of the scoring function, no other hypothesis can subsequently have score greater than y. Therefore y must be k-optimal.
If best-first beam search pops a hypothesis, then beam search necessarily pops that same hypothesis.
We prove the lemma by induction on hypothesis length. The base case holds trivially: For hypotheses of length 0, both best-first beam search and beam search must pop the 〈bos〉 as it is the only item in the queue after initialization.
By the inductive hypothesis, suppose Lemma 4.1 holds for hypotheses of length < t. Suppose best-first beam search pops a hypothesis y =y<t ∘ yt of length t.
Case 1: Best-first beam search pops k hypotheses of length t − 1 before popping y, which is of length t. The sets of hypotheses of length t − 1 that each algorithm pops are necessarily the same by the inductive hypothesis and the fact that they have the same cardinality. If best-first beam search pops y, which is of length t, then it must be in the top-k highest-scoring hypotheses of length t in by the rules of the priority queue. Consequently, it must be in the top-k in .
Case 2: Best-first beam search has popped fewer than k hypotheses of length t − 1 before popping y. Then, all remaining hypotheses of length t − 1 in must have by the rules of the priority queue. By the monotonicity of the score function, all extensions of those will also have . Because none of has greater score than y, y must be in Bt.
Best-first beam search will never pop more hypotheses than beam search.
Once best-first beam search has popped k hypotheses of length t, hypotheses from time steps < t do not need to be popped.
This follows from Lemma 4.1. If k hypotheses of length t have been popped, then these must be the top-k hypotheses from time step t. Therefore no hypothesis from time step < t that is still in would be in the top-k at time step t.
Let ℋbsand ℋAbe the set of khypotheses returned by beam search and best-first beam search, respectively. ℋbs =ℋA.
Because |ℋbs| = |ℋA| = k, we only need to show y ∈ℋbs⇒y ∈ℋA.
Suppose, by way of contradiction, there exists a hypothesis y ∈ℋbs such that y∉ℋA. If y∉ℋA then we must not pop the prefix y<t (where y =y<t ∘yt:|y|) for some time step t < |y|.
Case 1: At some time step t + j (j ≥ 0), we pop k partial hypotheses where . By Lemma 4.1, it must be that ) ∀i ∈ 1,…,k. This implies that for beam search, y≤t+j would not be in the top-k paths at time step t + j since by Lemma 4.3, paths would also be evaluated by beam search. Therefore y cannot be in ℋbs, which is a contradiction.
Case 2: For no time step t + j (j ≥ 0) do we pop k paths. This can only happen if the algorithm stops early, namely, we have found k complete hypotheses y(1),…,y(k). If this is the case, then by rules of the priority queue, each y(1),…,y(k) must have score greater than score(x,y<t). By monotonicity of the score function, score(x,y(i))> score(x,y). This implies y cannot be in ℋbs, which is a contradiction.
Non-monotonic Scoring Functions.
Non-monotonic scoring functions (Definition 3.2) break the assumptions of § 4.1, in which case best-first beam search is not guaranteed to return a k-optimal hypothesis. However, when the scoring function is boundable from above, we can alter the original stopping criterion (② in Alg. 2) such that k-optimality is again guaranteed.
A Note on Heuristics.
Our analysis shows the equivalence of beam search and best-first beam search, that is, when h(x,y) = 0. The analysis does not hold for arbitrary admissible heuristics. A poor heuristic (e.g., one that grossly overestimates the future score of continuing down one path) may cause other items to be pruned from best-first beam search that otherwise would have remained on the beam in standard beam search.
4.2 Runtime
The runtime of best-first beam search is
We pop at most nmax ⋅ k items. Each pop requires us to push items. Each push requires time when the priority queue is implemented with a min–max heap (Atkinson et al., 1986) and incrementally pruned so that it has no more than k items. After pushing those items, we have to perform a percolation in the priority queue of priority queues, which requires time. This yields time.
The runtime of standard beam search is.
The proof is the same as Theorem 4.6, but we can forgo the percolation step in the queue of queues because standard beam search proceeds in order of hypothesis length. This yields .
Although the theoretical bound of best-first beam search has an additional log factor compared with standard beam search, we find this to be negligible in practice. Rather, we find number of calls to score, the scoring function under our model (e.g., a neural network), is often the bottleneck operation when decoding neural networks (see § 6 for empirical evidence). In terms of this metric, the beam search algorithm makes calls to score, as score is called once for each active hypothesis in B and B may evolve for nmax rounds. The worst-case number of calls to score will be the same as for beam search, which follows from Lemma 4.3.
5 Scoring Functions
Even before the findings of Stahlberg and Byrne (2019), it was well known that the best-scoring hypothesis with respect to the traditional likelihood objective can be far from ideal in practice (Wu et al., 2016; Murray and Chiang, 2018; Yang et al., 2018). For language generation tasks specifically, the results returned by neural models using the standard scoring function are often short and default to high-frequency words (Vinyals and Le, 2015; Shen et al., 2016).
To alleviate such problems, methods that revise hypothesis scores to incorporate preferences for longer, less repetitive, or more diverse options have been introduced and are often used in practice. While most such techniques change the scoring function such that it is no longer monotonic, we can still guarantee the k-optimality of the returned hypothesis for (upper) bounded scoring functions using the methods discussed in § 4.1. In the remainder of this section, we present alternate scoring schemes adapted to work with best-first beam search. Additionally, we present several heuristics which, while breaking the k-optimality guarantee, provide another set of decoding strategies worth exploring.
Length Normalization.
Length normalization is a widely used hypothesis scoring method that aims to counteract the propensity for shorter sequences to have higher scores under neural models; this is done by normalizing scores by hypothesis length (see Murray and Chiang [2018] for more detail).
Mutual Information.
6 Experiments
We run our algorithm on several language-related tasks that typically use beam search for decoding: NMT and AS. Specifically, experiments are performed on IWSLT’14 De-En (Cettolo et al., 2012), WMT’17 De-En (Bojar et al., 2017), MTTT Fr-En (Duh, 2018), and CNN-DailyMail (Hermann et al., 2015) using both Transformers (Vaswani et al., 2017) and Convolutional sequence-to-sequence models (Gehring et al., 2017).
For reproducibility, we use the data pre-processing scripts provided by fairseq (Ott et al., 2019) and follow their methods for training sequence transduction models. Hyperparameters are set in accordance with previous works. Specifically, on IWSLT’14 and MTTT tasks, we follow the recommended Transformer settings for IWSLT’14 in fairseq,9 which are based on Vaswani et al. (2017) and Gehring et al. (2017). Hyperparameters for models trained on the WMT task are set following version 3 of the Tensor2Tensor toolkit (Vaswani et al., 2018). We use byte-pair encoding (BPE; Sennrich et al. 2016) for all languages. Vocabulary sizes for WMT and IWSLT’14 are set from recommendations for the respective tasks in fairseq; for the MTTT tasks, vocabulary sizes are tuned on models trained with standard label-smoothing regularization. Similarly, the CNN/DailyMail dataset is pre-processed and uses BPE following the same steps as (Lewis et al., 2019); model hyperparameters are likewise copied. Details are available on fairseq’s Web site.10
6.1 Running Time
In Table 2, we report values as the average number of calls to the scoring function per input; we do not use wall-clock time as this is heavily dependent on hardware. See Fig. 1 for empirical justification of the correlation between calls to the scoring function and runtime on the hardware our experiments were run on. For reference, in our experiments, the scoring function took on average > 99% of the total computation time, even with larger beam sizes, when overhead of the search algorithm is most significant.
. | IWSLT’14 De-En . | MTTT Fr-En . | CNN-DailyMail . | |||||||
---|---|---|---|---|---|---|---|---|---|---|
. | k = 5 (35.6) . | k = 10 (35.4) . | k = 100 (34.7) . | k = 500 (7.9) . | k = 10 (33.0) . | k = 100 (9.9) . | k = 500 (1.2) . | k = 5 (31.5) . | k = 10 (30.9) . | k = 100 (29.1) . |
BF beam search | 93(24%) | 169(36%) | 1275(79%) | 1168(736%) | 184(16%) | 867(138%) | 885(836%) | 200(33%) | 305(43%) | 2960(92%) |
Beam search (ES) | 10(7%) | 210(9%) | 2047(12%) | 7685(27%) | 196(9%) | 1310(58%) | 4182(98%) | 224(19%) | 357(22%) | 3942(59%) |
Beam search | 115 | 229 | 2286 | 9770 | 214 | 2066 | 8281 | 266 | 435 | 5673 |
. | IWSLT’14 De-En . | MTTT Fr-En . | CNN-DailyMail . | |||||||
---|---|---|---|---|---|---|---|---|---|---|
. | k = 5 (35.6) . | k = 10 (35.4) . | k = 100 (34.7) . | k = 500 (7.9) . | k = 10 (33.0) . | k = 100 (9.9) . | k = 500 (1.2) . | k = 5 (31.5) . | k = 10 (30.9) . | k = 100 (29.1) . |
BF beam search | 93(24%) | 169(36%) | 1275(79%) | 1168(736%) | 184(16%) | 867(138%) | 885(836%) | 200(33%) | 305(43%) | 2960(92%) |
Beam search (ES) | 10(7%) | 210(9%) | 2047(12%) | 7685(27%) | 196(9%) | 1310(58%) | 4182(98%) | 224(19%) | 357(22%) | 3942(59%) |
Beam search | 115 | 229 | 2286 | 9770 | 214 | 2066 | 8281 | 266 | 435 | 5673 |
We find that best-first (BF) beam search leads to significant speed-ups over both traditional beam search and beam search with early stopping, with a performance increase12 of ≈ 8x for a beam size of 500. We likewise find that best-first beam search offers speed-ups over early stopping methods that are not guaranteed to return the same results as standard beam search (see Table 3).
IWSLT’14 De-En . | ||||
---|---|---|---|---|
k . | method . | search error . | bleu . | # calls . |
10 | shrinking | 0% | 35.4 | 229(0%) |
early | 0% | 35.4 | 225(2%) | |
BF BS | − | 35.4 | 169(36%) | |
100 | shrinking | 31.7% | 13.2 | 2278(0%) |
early | 31.7% | 13.2 | 1738(31%) | |
BF BS | − | 34.7 | 1275(79%) | |
WMT’17 De-En | ||||
10 | shrinking | 0% | 28.6 | 260(0%) |
early | 0% | 28.6 | 252(3%) | |
BF BS | − | 28.6 | 230(12%) | |
100 | shrinking | 1.7% | 26.4 | 2587(0%) |
early | 1.7% | 26.4 | 2402(8%) | |
BF BS | − | 26.9 | 2046(26%) |
IWSLT’14 De-En . | ||||
---|---|---|---|---|
k . | method . | search error . | bleu . | # calls . |
10 | shrinking | 0% | 35.4 | 229(0%) |
early | 0% | 35.4 | 225(2%) | |
BF BS | − | 35.4 | 169(36%) | |
100 | shrinking | 31.7% | 13.2 | 2278(0%) |
early | 31.7% | 13.2 | 1738(31%) | |
BF BS | − | 34.7 | 1275(79%) | |
WMT’17 De-En | ||||
10 | shrinking | 0% | 28.6 | 260(0%) |
early | 0% | 28.6 | 252(3%) | |
BF BS | − | 28.6 | 230(12%) | |
100 | shrinking | 1.7% | 26.4 | 2587(0%) |
early | 1.7% | 26.4 | 2402(8%) | |
BF BS | − | 26.9 | 2046(26%) |
6.2 Length Normalization
We experiment with both forms of length normalization presented in § 5 and provide results in Table 4. We find that both methods, that is, changing the stopping criterion and using a heuristic during search, provide improvements over baseline bleu scores albeit with different hyperparameter settings; increases are similar to improvements reported by Murray and Chiang (2018). Notably, using a heuristic causes a large percentage of search errors with respect to standard beam search using the same scoring function. However, the difference in results appears to be beneficial in terms of bleu.
IWSLT’14 De-En . | ||||||
---|---|---|---|---|---|---|
. | k . | β . | b . | # calls . | search error . | bleu . |
Heuristic | 5 | 0.8 | |x| | 115(0%) | 40.6% | 33.9+0.3 |
10 | 1.2 | |x| | 229(0%) | 54.7% | 33.8+0.5 | |
Stopping Criterion | 5 | 0.5 | nmax | 73(58%) | − | 33.7+0.1 |
10 | 0.5 | nmax | 130(76%) | − | 33.7+0.4 | |
MTTT Fr-En | ||||||
Heuristic | 5 | 0.8 | .7|x| | 100(8%) | 16.2% | 33.5+0.2 |
10 | 1.0 | .7|x| | 196(9%) | 25.2% | 33.6+0.6 | |
Stopping Criterion | 5 | 1.0 | nmax | 65(66%) | − | 34.1+0.8 |
10 | 1.2 | nmax | 88(143%) | − | 34.1+1.1 |
IWSLT’14 De-En . | ||||||
---|---|---|---|---|---|---|
. | k . | β . | b . | # calls . | search error . | bleu . |
Heuristic | 5 | 0.8 | |x| | 115(0%) | 40.6% | 33.9+0.3 |
10 | 1.2 | |x| | 229(0%) | 54.7% | 33.8+0.5 | |
Stopping Criterion | 5 | 0.5 | nmax | 73(58%) | − | 33.7+0.1 |
10 | 0.5 | nmax | 130(76%) | − | 33.7+0.4 | |
MTTT Fr-En | ||||||
Heuristic | 5 | 0.8 | .7|x| | 100(8%) | 16.2% | 33.5+0.2 |
10 | 1.0 | .7|x| | 196(9%) | 25.2% | 33.6+0.6 | |
Stopping Criterion | 5 | 1.0 | nmax | 65(66%) | − | 34.1+0.8 |
10 | 1.2 | nmax | 88(143%) | − | 34.1+1.1 |
6.3 Mutual Information
We train a language model on the IWSLT dataset and use it to calculate p(y) from (12) as marginalizing over y is intractable (see Li et al. [2016] for further justification). We run experiments using both of the methods discussed in § 5 and present results in Table 5. We find that both methods provide results of equivalent bleu score compared with the baseline output, namely, results obtained with the unbounded PMI objective and beam search. Again, despite the high search error rate demonstrated by the heuristic method, evaluation metrics are still comparable.
. | k . | ε . | β . | # calls . | search error . | bleu . |
---|---|---|---|---|---|---|
Baseline | 5 | − | .05 | 115 | − | 33.2 |
10 | − | .05 | 229 | − | 33.0 | |
Heuristic | 5 | .02 | .05 | 129(0%) | 42.7% | 33.2 |
10 | .02 | .05 | 256(0%) | 42.7% | 33.0 | |
Stopping Criterion | 5 | 3e–4 | .05 | 114(1%) | 29.2% | 33.2 |
10 | 5e–5 | .05 | 224(2%) | 26.6% | 33.0 |
. | k . | ε . | β . | # calls . | search error . | bleu . |
---|---|---|---|---|---|---|
Baseline | 5 | − | .05 | 115 | − | 33.2 |
10 | − | .05 | 229 | − | 33.0 | |
Heuristic | 5 | .02 | .05 | 129(0%) | 42.7% | 33.2 |
10 | .02 | .05 | 256(0%) | 42.7% | 33.0 | |
Stopping Criterion | 5 | 3e–4 | .05 | 114(1%) | 29.2% | 33.2 |
10 | 5e–5 | .05 | 224(2%) | 26.6% | 33.0 |
6.4 Memory Usage
We conduct a set of experiments where we limit total queue capacity to k ⋅ γ for γ ∈{1,…,nmax}, as described in § 3.3, and report the bleu score of the resulting set of hypotheses.
As shown in Table 6, we find that restricting the queue capacity does not harm output quality and, additionally, leads to even greater runtime performance increase. For example, runtime for decoding of IWSLT’14 with a beam size of 10 can be improved by > 3x while returning results with better evaluation metrics. We find that improvements are even more pronounced for larger beam sizes. Across beam widths and tasks, we find that search error (with respect to standard beam search) is quite low for γ = 5. Additionally, for smaller γ, the change in bleu score demonstrates that search error in this context does not necessarily hurt the quality of results.
IWSLT’14 De-En . | ||||
---|---|---|---|---|
k . | γ . | search error . | bleu . | # calls . |
5 | 2 | 22.7% | 35.7+0.1 | 43.8(163%) |
5 | 4.4% | 35.8+0.2 | 79.8(44%) | |
nmax | − | 35.6 | 93.0(24%) | |
10 | 2 | 22.6% | 35.7+0.3 | 48.4(374%) |
5 | 4.5% | 35.6+0.2 | 126.9(81%) | |
nmax | − | 35.4 | 169.0(36%) | |
WMT’17 De-En | ||||
5 | 2 | 29.0% | 29.7+0.2 | 77.5(75%) |
5 | 1.2% | 29.5+0.0 | 115.8(12%) | |
nmax | − | 29.5 | 118.8(10%) | |
10 | 2 | 36.6% | 29.5+0.2 | 97.3(165%) |
5 | 2.6% | 29.3+0.0 | 230.0(12%) | |
nmax | − | 29.3 | 230.2(12%) |
IWSLT’14 De-En . | ||||
---|---|---|---|---|
k . | γ . | search error . | bleu . | # calls . |
5 | 2 | 22.7% | 35.7+0.1 | 43.8(163%) |
5 | 4.4% | 35.8+0.2 | 79.8(44%) | |
nmax | − | 35.6 | 93.0(24%) | |
10 | 2 | 22.6% | 35.7+0.3 | 48.4(374%) |
5 | 4.5% | 35.6+0.2 | 126.9(81%) | |
nmax | − | 35.4 | 169.0(36%) | |
WMT’17 De-En | ||||
5 | 2 | 29.0% | 29.7+0.2 | 77.5(75%) |
5 | 1.2% | 29.5+0.0 | 115.8(12%) | |
nmax | − | 29.5 | 118.8(10%) | |
10 | 2 | 36.6% | 29.5+0.2 | 97.3(165%) |
5 | 2.6% | 29.3+0.0 | 230.0(12%) | |
nmax | − | 29.3 | 230.2(12%) |
7 Related Work
Our work is most similar to that of Zhou and Hansen (2005), who propose beam stack search. However, they are focused on exact inference and still evaluate hypotheses in breadth-first order. Additionally, their algorithm requires memory; although best-first beam search has the same requirements, we introduce effective methods for reducing them, namely, memory-reduced best-first beam search.
Huang et al. (2017) propose and prove the optimality of an early-stopping criterion for beam search. The authors find in practice though that reduction in computation from their algorithm was generally not significant. We build on this work and introduce additional methods for avoiding unnecessary computation. Our method leads to better performance, as shown in Table 2.
Klein and Manning (2003) use A* for PCFG parsing; however, they use the un-pruned version for exact search, which is not applicable for NMT or AS as the memory requirements of the algorithm are far too large for these tasks. Subsequently, Pauls and Klein (2009) provide a method for pruning this search algorithm, albeit using a threshold rather than explicitly limiting the state space. Huang et al. (2012) also adapt A* for a k-best decoding algorithm. Although their methods differ notably from ours, they likewise use pruning techniques that allow for substantial speedups.
Stahlberg and Byrne (2019) create an exact inference algorithm for decoding and use it to analyze the output of neural NMT models. Whereas they likewise utilize the monotonicity of the scoring function to make their method tractable, they do not focus on speed or mimicking the results of standard beam search.
8 Conclusion
We propose best-first beam search, an algorithm that allows for faster decoding while still guaranteeing k-optimality. We provide results on several sequence-to-sequence transduction tasks that show the speed-ups that our algorithm provides over standard beam search for decoding neural models. We adapt several popular alternate scoring functions to best-first beam search and provide a framework that can be used to adapt other scoring methods such as coverage normalization (Wu et al., 2016) or diverse beam search (Vijayakumar et al., 2016). We also provide a memory-reduced version of our algorithm, which returns competitive results in a fraction of the time needed for standard beam search.
Notes
bos and eos are typically members of . Often, eos counts towards the nmax length limit while bos does not. This is reflected in (3).
To see why, apply (an order-preserving transformation): .
Often, the score function is additively decomposable in t, such as (5). Implementations can exploit this fact to make each score evaluation (line 9) rather than . We did not make this implementation detail explicit in Alg. 1 or Alg. 2 for generality and simplicity.
If the last token of y′ is the end symbol (e.g., eos), then y′ is not expanded any further. One can either regard y′ as any other hypothesis albeit with y′∘ yt =y′ or keep appending eos (i.e., y′∘ yt =y′∘eos ) so that time step and length can be regarded as synonymous. We adopt the latter standard for comparability with subsequent algorithms.
Best-first beam search is guaranteed to return the same set of k hypotheses as beam search. We include the proof for only the top hypothesis for simplicity. The proof for set equality follows naturally.
For monotonic scoring functions, we have .
We enforce r|x| < nmax.
Performance increase is defined as (old −new)/new.