Beam search

Source: Wikipedia, the free encyclopedia.
Beam search with width 3 (animation)

In computer science, beam search is a heuristic search algorithm that explores a graph by expanding the most promising node in a limited set. Beam search is an modification of best-first search that reduces its memory requirements. Best-first search is a graph search which orders all partial solutions (states) according to some heuristic. But in beam search, only a predetermined number of best partial solutions are kept as candidates.[1] It is thus a greedy algorithm.

Details

Beam search uses breadth-first search to build its search tree. At each level of the tree, it generates all successors of the states at the current level, sorting them in increasing order of heuristic cost.[2] However, it only stores a predetermined number, , of best states at each level (called the beam width). Only those states are expanded next. The greater the beam width, the fewer states are pruned. With an infinite beam width, no states are pruned and beam search is identical to best-first search.[3] Conversely, a beam width of 1 corresponds to a hill-climbing algorithm.[3] The beam width bounds the memory required to perform the search. Since a goal state could potentially be pruned, beam search sacrifices completeness (the guarantee that an algorithm will terminate with a solution, if one exists). Beam search is not optimal (that is, there is no guarantee that it will find the best solution).

Uses

A beam search is most often used to maintain tractability in large systems with insufficient amount of memory to store the entire search tree.[4] For example, it has been used in many machine translation systems.[5] (The state of the art now primarily uses neural machine translation based methods, especially large language models) To select the best translation, each part is processed, and many different ways of translating the words appear. The top best translations according to their sentence structures are kept, and the rest are discarded. The translator then evaluates the translations according to a given criterion, choosing the translation which best keeps the goals.

History

The Harpy Speech Recognition System (introduced in a 1976 dissertation[6]) was the first use of what would become known as beam search.[7] While the procedure was originally referred to as the "locus model of search", the term "beam search" was already in use by 1977.[8]

Variants

Beam search has been made complete by combining it with depth-first search, resulting in beam stack search[9] and depth-first beam search,[4] and with limited discrepancy search,[4] resulting in beam search using limited discrepancy backtracking[4] (BULB). The resulting search algorithms are anytime algorithms that find good but likely sub-optimal solutions quickly, like beam search, then backtrack and continue to find improved solutions until convergence to an optimal solution.

In the context of a local search, we call local beam search a specific algorithm that begins selecting randomly generated states and then, for each level of the search tree, it always considers new states among all the possible successors of the current ones, until it reaches a goal.[10][11]

Since local beam search often ends up on local maxima, a common solution is to choose the next states in a random way, with a probability dependent from the heuristic evaluation of the states. This kind of search is called stochastic beam search.[12]

Other variants are flexible beam search and recovery beam search.[11]

References

  1. ^ "beam search". Free On-line Dictionary of Computing. Retrieved 2024-03-27.
  2. ^ "BRITISH MUSEUM SEARCH". bradley.bradley.edu. Retrieved 2016-04-11.
  3. ^ a b Norvig, Peter (1992). Paradigms of Artificial Intelligence Programming: Case Studies in Common LISP. Morgan Kaufmann. p. 196. ISBN 9781558601918.
  4. ^ a b c d Furcy, D.; Koenig, S. (2005). "Limited discrepancy beam search". Proceedings of the 19th international joint conference on Artificial intelligence. Morgan Kaufmann. pp. 125–131.
  5. ^ Tillmann, C.; Ney, H. (2003). "Word reordering and a dynamic programming beam search algorithm for statistical machine translation". Computational Linguistics. 29 (1): 97–133. doi:10.1162/089120103321337458. S2CID 7829066.
  6. ^ Lowerre, Bruce T. (1976). The Harpy Speech Recognition System (PDF) (PhD). Carnegie Mellon University.
  7. ^ Ow, Peng Si; Morton, Thomas E. (1988). "Filtered beam search in scheduling†". International Journal of Production Research. 26 (1): 35–62. doi:10.1080/00207548808947840. ISSN 0020-7543.
  8. ^ Defense Technical Information Center (1977-08-01). DTIC ADA049288: Speech Understanding Systems. Summary of Results of the Five-Year Research Effort at Carnegie-Mellon University. p. 6.
  9. ^ Zhou, Rong; Hansen, Eric (2005). "Beam-Stack Search: Integrating Backtracking with Beam Search". ICAPS. pp. 90–98. Archived from the original on 2021-04-20. Retrieved 2011-04-09.
  10. ^ Svetlana Lazebnik. "Local search algorithms" (PDF). University of North Carolina at Chapel Hill, Department of Computer Science. p. 15. Archived (PDF) from the original on 2011-07-05.
  11. ^ a b Pushpak Bhattacharyya. "Beam Search". Indian Institute of Technology Bombay, Department of Computer Science and Engineering (CSE). pp. 39–40. Archived from the original on 2018-11-21.
  12. ^ James Parker (2017-09-28). "Local Search" (PDF). University of Minnesota. p. 17. Archived (PDF) from the original on 2017-10-13. Retrieved 2018-11-21.