Week 6: Genetic Algorithms # 1 Flashcards
<p>What are the 2 classes/types of meta-heuristics</p>
Population-based methods & Trajectory Methods
![](https://s3.amazonaws.com/brainscape-prod/system/cm/387/812/011/a_image_thumb.png?1657243149)
<p>In population-based methods, what does a "population" refer to?</p>
<p>A group of solutions/states</p>
<p>A population of individuals exists in an environment with limited \_\_\_\_\_\_\_</p>
<p>resources</p>
<p></p>
<p></p>
<p>Individuals with higher fitness act as seeds for the next \_\_\_\_\_\_ of individuals through \_\_\_\_\_\_ and \_\_\_\_\_\_</p>
generation/population
recombination/mutation
mutation
<p></p>
<p></p>
<p>New individuals have their \_\_\_\_\_ evaluated and compete for survival</p>
<p></p>
<p></p>
<p>fitness</p>
<p></p>
<p></p>
<p>Over time \_\_\_\_\_ \_\_\_\_\_ causes a rise in the \_\_\_\_\_ of the population</p>
<p></p>
<p></p>
<p>Natural Selection
<br></br>Fitness</p>
<p></p>
<p></p>
<p>What are stochastic algorithms?</p>
<p></p>
<p></p>
<p>algorithms that explicitly use randomness to find the next state - it is not determined by the current state</p>
<p></p>
<p></p>
<p>Are Evolutionary Algorithms Deterministic or Stochastic?
<br></br>
<br></br>Are they population based? or Trajectory based?</p>
<p></p>
<p></p>
<p>Evolutionary Algorithms are stochastic, population-based algorithms</p>
<p></p>
<p></p>
<p>Are Evolutionary Algorithms Deterministic or Stochastic?
<br></br>
<br></br>Are they population based? or Trajectory based?</p>
<p></p>
<p></p>
<p>Evolutionary Algorithms are stochastic, population-based algorithms</p>
<p></p>
<p></p>
<p>What must a search algorithm do in order to perform better than a random search?</p>
<p></p>
<p></p>
<p>The search algorithm must take advantage of problem-specific information about the search target or the environment (just like heuristics)</p>
<p></p>
<p></p>
<p>What is Active information</p>
Measures the contribution of problem-specific information for successfully finding a target
<p></p>
<p></p>
<p>An algorithm does not create \_\_\_\_\_ information, it performs very valuable transformation of \_\_\_\_\_ information</p>
<p></p>
<p></p>
<p>new
| known</p>
In Genetic Algorithms, each point in the parameter space has a _____ value. The problem of the search is to find a sufficiently good such value
fitness
<p></p>
<p></p>
<p>For evolutionary algorithms, we require \_\_\_\_\_ information. This prevents the algorithm from behaving like a \_\_\_\_\_\_ search</p>
active
random
In Genetic Algorithms, the fitness of an individual is determined by the _______ traits.
These can be behavioural features, or physical features
phenotypic
in Genetic Algorithms, Selected individuals _______, passing their properties to the _______. Whereas other individuals die without _______, and their properties are ______
reproduce
offspring
mating/reproducing
discarded
<p></p>
<p></p>
<p>In Genetic Algorithms, small random variations called \_\_\_\_\_\_ occur in phenotypic traits during \_\_\_\_\_\_\_</p>
mutations
reproduction
In Genetic Algorithms, through mutations, new ______ of traits occur and get evaluated
combinations
<p></p>
<p></p>
<p>In Genetic Algorithms, for a given population, the basic operations are \_\_\_\_\_\_, \_\_\_\_\_\_ and \_\_\_\_\_\_</p>
<p></p>
<p></p>
<p>Selection
Reproduction
Mutation</p>
<p></p>
<p></p>
<p>A Genetic Algorithm maintains a \_\_\_\_\_\_ of candidate solutions for the problem at hand, and makes it \_\_\_\_\_\_ by iteratively \_\_\_\_\_\_ a set of \_\_\_\_\_\_ operators</p>
population
evolve
applying
stochastic (random)
describe the flow of a Genetic Algorithm
<p></p>
<p></p>
![](https://s3.amazonaws.com/brainscape-prod/system/cm/389/673/417/a_image_thumb.png?1657239386)
<p></p>
<p>Genetic Algorithms evolve from one \_\_\_\_\_\_\_\_ to the next according to selection and the \_\_\_\_\_\_\_</p>
population/iteration
search operators
<p></p>
<p>What are the search operators in GA?</p>
Recombination (crossover)
Mutation
Selection
<p></p>
<p>What is the general flow for Simple Genetic Algorithm?</p>
<p></p>
![](https://s3.amazonaws.com/brainscape-prod/system/cm/389/674/044/a_image_thumb.png?1657240284)