Genetic Algorithm L9
Genetic Algorithm L9
Genetic Algorithm
Introduction
Inspired by natural evolution
Population of individuals
Key Terms
Individual - Any possible solution and characterized by a set of
parameters, i.e., Genes
Chromosome - Blueprint for an individual, i.e., the genes are joined into
a string
Genomes
Selection
o During each successive generation, a proportion of the existing
population is selected to breed a new generation.
Crossover
o the most common type is single point crossover. In single point
crossover, you choose a locus at which you swap the remaining
alleles from on parent to the other. This is complex and is best
understood visually.
o As you can see, the children take one section of the chromosome
from each parent.
Uniform Crossover
Mutation
Termination
o This generational process is repeated until a termination
condition has been reached. The common terminating
conditions are:
Evaluation of fitness
function
****