local search Flashcards

1
Q

what’s a local maximum?

A

-A local maximum occurs when the current solution is better than its neighbors but is not the best solution globally.
-the goal of a local search algorithm is to find the global maximum, but this is not guaranteed if the algorithm gets trapped in a local maximum

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what’s a plateaus?

A
  • a flat region in the search space where the objective function remains constant or changes very slowly.(can pose as a problem)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what’s a ridge?

A

-a narrow, elongated region in the search space where the values of the objective function rise gradually (can pose as a problem)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

when do we use local search?

A
  • when there are limited resources
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what are the characteristics of local search?

A

-it focuses on neighbouring states
-doesn’t keep track of visited states
-the goal is to find a solution without considering distant states

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what are the main challenger for hill climbing?

A

-ridges
-local maxima
-plateaus

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what’s a search that solves the local maxima problem?

A

-Simulated Annealing: it Combines hill climbing with random exploration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what’s a local beam search?

A
  • at each step, the algorithm generates k successor states from the current state.
    -If k is greater than 1, the algorithm maintains multiple states simultaneously, each state will continue climbing indipendently
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what’s a crossover operation? ( genetics algorithms)

A
  • pairs of individuals are selected from the population.
    -A crossover point is chosen at random for each pair.
    -Offspring are created by exchanging genetic material (information) between the parents at the crossover point.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly