Genetic Algorithm
Genetic Algorithm
Genetic Algorithms are good at taking large, potentially huge search spaces and navigating them, looking for optimal combinations of things, solutions you might not otherwise find in a lifetime.
- Salvatore Mangano Computer Design, May 1995
Directed search algorithms based on the mechanics of biological evolution Developed by John Holland, University of Michigan (1970s)
To understand the adaptive processes of natural systems To design artificial systems software that retains the robustness of natural systems
Wendy Williams Metaheuristic Algorithms 2
Provide efficient, effective techniques for optimization and machine learning applications Widely-used today in business, scientific and engineering circles
Finonacci
Newton
Evolutionary strategies
Genetic algorithms
Parallel
Centralized Distributed
Sequential
Steady-state Generational
Components of a GA
A problem to solve, and ... Encoding technique (gene, chromosome) Initialization procedure (creation) Evaluation function (environment) Selection of parents (reproduction) Genetic operators (mutation, recombination) Parameter settings (practice and art)
Wendy Williams Metaheuristic Algorithms 5 Genetic Algorithms: A Tutorial
select parents for reproduction; perform recombination and mutation; evaluate population;
}
}
Wendy Williams Metaheuristic Algorithms 6 Genetic Algorithms: A Tutorial
modification
modified children
population
deleted members
evaluation
evaluated children
discard
Wendy Williams Metaheuristic Algorithms 7 Genetic Algorithms: A Tutorial
Population
population Chromosomes could be:
Bit strings Real numbers Permutations of element Lists of rules Program elements ... any data structure ...
(0101 ... 1100) (43.2 -33.1 ... 0.0 89.2) (E11 E3 E7 ... E1 E15) (R1 R2 R3 ... R22 R23) (genetic programming)
Reproduction
reproduction
parents children
population
Parents are selected at random with selection chances biased in relation to chromosome evaluations.
Wendy Williams Metaheuristic Algorithms 9 Genetic Algorithms: A Tutorial
Chromosome Modification
children
modification
modified children
Modifications are stochastically triggered Operator types are: Mutation Crossover (recombination)
10 Genetic Algorithms: A Tutorial
Causes movement in the search space (local or global) Restores lost information to the population
11 Genetic Algorithms: A Tutorial
Crossover: Recombination
P1 P2
(0 1 1 0 1 0 0 0) (1 1 0 1 1 0 1 0)
(0 1 0 0 1 0 0 0) (1 1 1 1 1 0 1 0)
C1 C2
Crossover is a critical feature of genetic algorithms: It greatly accelerates search early in evolution of a population It leads to effective combination of schemata (subsolutions on different chromosomes)
Wendy Williams Metaheuristic Algorithms 12 Genetic Algorithms: A Tutorial
Evaluation
evaluated children modified children
evaluation
The evaluator decodes a chromosome and assigns it a fitness measure The evaluator is the only link between a classical GA and the problem it is solving
13 Genetic Algorithms: A Tutorial
Deletion
population
discarded members
discard
Generational GA: entire populations replaced with each iteration Steady-state GA: a few members replaced each generation
14 Genetic Algorithms: A Tutorial
An Abstract Example
A Simple Example
16
A Simple Example
The Traveling Salesman Problem:
Find a tour of a given set of cities so that
each city is visited only once the total distance traveled is minimized
17
Representation
Representation is an ordered list of city numbers known as an order-based GA.
1) London 2) Venice 3) Dunedin 4) Singapore 5) Beijing 7) Tokyo 6) Phoenix 8) Victoria
CityList1
(3 5 7 2 1 6 4 8)
CityList2
(2 5 7 6 8 1 3 4)
18 Genetic Algorithms: A Tutorial
Crossover
Crossover combines inversion and recombination: * * Parent1 (3 5 7 2 1 6 4 8) Parent2 (2 5 7 6 8 1 3 4)
Child
(5 8 7 2 1 6 3 4)
Mutation
Mutation involves reordering of the list:
* * (5 8 7 2 1 6 3 4) (5 8 6 2 1 7 3 4)
Before: After:
20
21
22
23
24
25
Overview of Performance
TSP30 - Overview of Performance
1600 1400 1200
Distance
1000 800 600 400 200 0 1 3 5 7 9 11 13 15 17 19 21 23 25 27 29 31 Generations (1000) Best Worst Average
26
representation population size, mutation rate, ... selection, deletion policies crossover, mutation operators
Termination Criteria Performance, scalability Solution is only as good as the evaluation function (often hardest part)
28 Genetic Algorithms: A Tutorial
Concept is easy to understand Modular, separate from application Supports multi-objective optimization Good for noisy environments Always an answer; answer gets better with time Inherently parallel; easily distributed
29 Genetic Algorithms: A Tutorial
Many ways to speed up and improve a GA-based application as knowledge about problem domain is gained Easy to exploit previous or alternate solutions Flexible building blocks for hybrid applications Substantial history and range of use
30 Genetic Algorithms: A Tutorial
When to Use a GA
Alternate solutions are too slow or overly complicated Need an exploratory tool to examine new approaches Problem is similar to one that has already been successfully solved by using a GA Want to hybridize with an existing solution Benefits of the GA technology meet key problem requirements
31
Application Types
gas pipeline, pole balancing, missile evasion, pursuit semiconductor layout, aircraft design, keyboard configuration, communication networks manufacturing, facility scheduling, resource allocation trajectory planning designing neural networks, improving classification algorithms, classifier systems filter design poker, checkers, prisoners dilemma set covering, travelling salesman, routing, bin packing, graph colouring and partitioning
32
Conclusions
Question: Answer:
If GAs are so smart, why aint they rich? Genetic algorithms are rich - rich in application across a large and growing number of disciplines.
- David E. Goldberg, Genetic Algorithms in Search, Optimization and Machine Learning
33