Top "Beam-search" questions

This tag is for questions related to the heuristic search algorithm beam search.

What does the beam size represent in the beam search algorithm?

I have a question about the beam search algorithm. Let's say that n = 2 (the number of nodes we are going …

algorithm search artificial-intelligence beam-search
What is the difference between Local beam search and Stochastic beam search?

I know that both of them select K randomly, and then choose the best K, as I understand the best …

algorithm artificial-intelligence beam-search
Beam Search in Python

I am implementing a Seq2Seq model in Keras. However, they have not provided the beam search option in the …

python tensorflow deep-learning keras beam-search