{ "@context": "https://schema.org", "@type": "Organization", "name": "Brainscape", "url": "https://www.brainscape.com/", "logo": "https://www.brainscape.com/pks/images/cms/public-views/shared/Brainscape-logo-c4e172b280b4616f7fda.svg", "sameAs": [ "https://www.facebook.com/Brainscape", "https://x.com/brainscape", "https://www.linkedin.com/company/brainscape", "https://www.instagram.com/brainscape/", "https://www.tiktok.com/@brainscapeu", "https://www.pinterest.com/brainscape/", "https://www.youtube.com/@BrainscapeNY" ], "contactPoint": { "@type": "ContactPoint", "telephone": "(929) 334-4005", "contactType": "customer service", "availableLanguage": ["English"] }, "founder": { "@type": "Person", "name": "Andrew Cohen" }, "description": "Brainscape’s spaced repetition system is proven to DOUBLE learning results! Find, make, and study flashcards online or in our mobile app. Serious learners only.", "address": { "@type": "PostalAddress", "streetAddress": "159 W 25th St, Ste 517", "addressLocality": "New York", "addressRegion": "NY", "postalCode": "10001", "addressCountry": "USA" } }

local search Flashcards

(9 cards)

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