Local Beam Search

Duration: 6 min

This video lesson is available to enrolled students.

Enroll to watch — ZERO TO HERO

AI Summary

An AI-generated summary of this video lecture.

The video presents a detailed lecture on advanced local search algorithms designed to overcome the limitations of standard hill climbing. It begins by defining Simulated Annealing, a technique that permits the algorithm to make "bad moves" (transitions to worse states) with a specific probability, particularly in early search stages. This probability is "reduced over time" to help the system escape "local optima and ridges." The instructor notes that this helps avoid "visited states." Next, Tabu Search is explained as a method to prevent the algorithm from getting "stuck in a loop or revisiting states" by maintaining a "list" of previously visited states to avoid in future steps. The lecture then transitions to Local Beam Search, a variation that tracks k states rather than just one. It starts with k randomly generated states, generates all successors, and selects the best k to continue. The instructor highlights the concept of "global visibility" and how states share information, quoting the phrase "Come over here, the grass is greener!" Finally, the video addresses the "Problem Encountered" with Local Beam Search: a "lack of diversity among the k states," which can lead to the search becoming an "expensive version of hill climbing." To fix this, "stochastic beam search" is introduced, which selects successors probabilistically based on an "increasing function of its value."

Chapters

  1. 0:00 2:00 00:00-02:00

    The video begins with a slide titled "Simulated Annealing". The text explains that this technique allows the hill climbing algorithm to make "bad moves" (moving to worse states) with a certain probability, especially in early stages. This probability is "reduced over time" to avoid getting stuck in "local optima and ridges." The instructor highlights these phrases and writes "Lost -> visited states -> avoid" next to the text. She then moves to "Tabu Search," explaining that to prevent the algorithm from getting "stuck in a loop or revisiting states," a list of previously visited states can be maintained. She writes "List" next to the text to emphasize this memory component.

  2. 2:00 5:00 02:00-05:00

    The lecture transitions to "Local Beam Search." The slide text states that this variation keeps track of k states rather than just one. It begins with k randomly generated states. At each step, all successors of all k states are generated. If any one is a goal, it halts. Otherwise, it selects the best k successors. The instructor draws a diagram comparing "Hill climbing" (1 neighbor) to "Local Beam Search" (k neighbors). She writes "Global visibility" and "explore -> ex climb" to explain the mechanism. She highlights the phrase "Come over here, the grass is greener!" to describe how states share information.

  3. 5:00 6:17 05:00-06:17

    The video discusses the "Problem Encountered" with Local Beam Search. The text states it can suffer from a "lack of diversity among the k states," making the search an "expensive version of hill climbing." The instructor explains that states can become concentrated in a small region. To solve this, a variant called "stochastic beam search" is introduced. Instead of choosing the best k, it chooses k successors at random, with the probability of choosing a given successor being an "increasing function of its value." She writes "k successor -> probability to solution" to summarize this concept.

The lecture systematically builds upon hill climbing by introducing mechanisms to handle local optima and loops. Simulated Annealing uses temperature-like probability reduction, while Tabu Search uses memory. Local Beam Search expands the search to a population of k states, enabling information sharing but risking premature convergence. Stochastic beam search resolves this by introducing randomness into the selection process, ensuring a balance between exploring new areas and exploiting good solutions.