(Ebook - PDF) Introduction To Genetic Algorithms With Java Applets
(Ebook - PDF) Introduction To Genetic Algorithms With Java Applets
Introduction to
Genetic Algorithms
Main page
Introduction
Biological Background
Search Space
Genetic Algorithm
GA Operators
GA Example (1D func.)
Parameters of GA
GA Example (2D func.)
Selection
Encoding
Crossover and Mutation
GA Example (TSP)
Recommendations
Other Resources
Browser Requirements
FAQ
About
Guest book (from 2/99)
GENETIC
ALGORITHMS
These pages introduce some fundamentals of genetics
algorithms. Pages are intended to be used for learning
about genetics algorithms without any previous
knowledge from this area. Only some knowledge of
computer programming is assumed. You can find here
several interactive Java applets demonstrating work of
genetic algorithms.
As the area of genetics algorithms is very wide, it is not
possible to cover everything in these pages. But you
should get some idea, what the genetic algorithms are
and what they could be useful for. Do not expect any
sophisticated mathematics theories here.
Now please choose next to continue or you can choose
any topic from the menu on the left side. If you do not
want to read all the introducing chapters, you can skip
directly to genetic algorithms and return later.
You can also check recommendations for your browser.
This site has also a Japanese translation.
About DNA
About DNA
DNA
(Deoxyribonucleic acid)
Here you can see some pictures to get an idea how the DNA looks like. Some basic information about
biological background is also available.
About DNA
Biological background
Reproduction
During reproduction, first occurs recombination (or crossover). Genes from parents form in some way
the whole new chromosome. The new created offspring can then be mutated. Mutation means, that the
elements of DNA are a bit changed. This changes are mainly caused by errors in copying genes from
parents.
The fitness of an organism is measured by success of the organism in its life.
Introduction
I. Introduction
First Words
Genetic algorithms are a part of evolutionary computing, which is a rapidly growing area of artificial
intelligence.
As you can guess, genetic algorithms are inspired by Darwin's theory about evolution. Simply said,
solution to a problem solved by genetic algorithms is evolved.
History
Idea of evolutionary computing was introduced in the 1960s by I. Rechenberg in his work "Evolution
strategies" (Evolutionsstrategie in original). His idea was then developed by other researchers. Genetic
Algorithms (GAs) were invented by John Holland and developed by him and his students and
colleagues. This lead to Holland's book "Adaption in Natural and Artificial Systems" published in 1975.
In 1992 John Koza has used genetic algorithm to evolve programs to perform certain tasks. He called his
method "genetic programming" (GP). LISP programs were used, because programs in this language can
expressed in the form of a "parse tree", which is the object the GA works on.
Search Space
NP-hard Problems
Example of difficult problems, which cannot be solved int "traditional" way, are NP problems.
There are many tasks for which we know fast (polynomial) algorithms. There are also some problems that are not possible
to be solved algorithmicaly. For some problems was proved that they are not solvable in polynomial time.
But there are many important tasks, for which it is very difficult to find a solution, but once we have it, it is easy to check
the solution. This fact led to NP-complete problems. NP stands for nondeterministic polynomial and it means that it is
possible to "guess" the solution (by some nondeterministic algorithm) and then check it, both in polynomial time. If we had
a machine that can guess, we would be able to find a solution in some reasonable time.
Studying of NP-complete problems is for simplicity restricted to the problems, where the answer can be yes or no. Because
there are tasks with complicated outputs, a class of problems called NP-hard problems has been introduced. This class is
not as limited as class of NP-complete problems.
For NP-problems is characteristic that some simple algorithm to find a solution is obvious at a first sight - just trying all
possible solutions. But this algorithm is very slow (usually O(2^n)) and even for a bit bigger instances of the problems it is
not usable at all.
Today nobody knows if some faster exact algorithm exists. Proving or disproving this remains as a big task for new
http://cs.felk.cvut.cz/~xobitko/ga/searchs.html (1 of 2) [7.5.2000 16:33:05]
Search Space
researchers (and maybe you! :-)). Today many people think, that such an algorithm does not exist and so they are looking
for some alternative methods - example of these methods are genetic algorithms.
Examples of the NP problems are satisfiability problem, travelling salesman problem or knapsack problem. Compendium
of NP problems is available.
About
Pages and Java Applets were all created by Marek Obitko, (c) 1998. If you have any comments,
questions or suggestions, you can send them to author.
Main page
GENETIC
ALGORITHMS
These pages introduce some fundamentals of genetics algorithms. Pages are
intended to be used for learning about genetics algorithms without any
previous knowledge from this area. Only some knowledge of computer
programming is assumed. You can find here several interactive Java applets
demonstrating work of genetic algorithms.
As the area of genetics algorithms is very wide, it is not possible to cover
everything in these pages. But you should get some idea, what the genetic
algorithms are and what they could be useful for. Do not expect any
sophisticated mathematics theories here.
Now please choose next to continue or you can choose any topic from the
menu on the left side. If you do not want to read all the introducing chapters,
you can skip directly to genetic algorithms and return later.
You can also check recommendations for your browser.
This site has also a Japanese translation.
Genetic algorithm
Genetic algorithm
2. [Crossover] With a crossover probability cross over the parents to form a new offspring
(children). If no crossover was performed, offspring is an exact copy of parents.
3. [Mutation] With a mutation probability mutate new offspring at each locus (position in
chromosome).
4. [Accepting] Place new offspring in a new population
4. [Replace] Use new generated population for a further run of algorithm
5. [Test] If the end condition is satisfied, stop, and return the best solution in current population
6. [Loop] Go to step 2
Some Comments
As you can see, the outline of Basic GA is very general. There are many things that can be implemented
differently in various problems.
First question is how to create chromosomes, what type of encoding choose. With this is connected
crossover and mutation, the two basic operators of GA. Encoding, crossover and mutation are introduced
in next chapter.
Next questions is how to select parents for crossover. This can be done in many ways, but the main idea
is to select the better parents (in hope that the better parents will produce better offspring). Also you may
think, that making new population only by new offspring can cause lost of the best chromosome from the
last population. This is true, so so called elitism is often used. This means, that at least one best solution
is copied without changes to a new population, so the best solution found can survive to end of run.
Some of the concerning questions will be discussed later.
Maybe you are wandering, why genetic algorithms do work. It can be partially explained by Schema
Theorem (Holland), however, this theorem has been criticised in recent time. If you want to know more,
check other resources.
Browser requirements
Browser Requirements
For best viewing of these pages you need a browser with support of frames, JavaScript and Java 1.1 (if
you see errors instead of applets, your browser supports Java 1.0). Recommended is Netscape Navigator
from version 4.07. You can also use Microsoft Internet Explorer from version 4.0, but support of Java is
strange in this browser (you may experience problems with redrawing and controlling applet).
Get Netscape
However, if you do not need to see Java Applets, any older browser (even without frames) can be used.
Netscape and Netscape Navigator are registered trademarks of Netscape Communications Corporation.
Microsoft Internet Explorer is trademark of Microsoft Corporation.
Java is trademark of Sun Microsystems, Inc.
Other resources
Recommendations
XIII. Recommendations
Parameters of GA
This chapter should give you some basic recommendations if you have decided to implement your
genetic algorithm. These recommendations are very general. Probably you will want to experiment with
your own GA for specific problem, because today there is no general theory which would describe
parameters of GA for any problem.
Recommendations are often results of some empiric studies of GAs, which were often performed only on
binary encoding.
Crossover rate
Crossover rate generally should be high, about 80%-95%. (However some results show that for
some problems crossover rate about 60% is the best.)
Mutation rate
On the other side, mutation rate should be very low. Best rates reported are about 0.5%-1%.
Population size
It may be surprising, that very big population size usually does not improve performance of GA (in
meaning of speed of finding solution). Good population size is about 20-30, however sometimes
sizes 50-100 are reported as best. Some research also shows, that best population size depends on
encoding, on size of encoded string. It means, if you have chromosome with 32 bits, the
population should be say 32, but surely two times more than the best population size for
chromosome with 16 bits.
Selection
Basic roulette wheel selection can be used, but sometimes rank selection can be better. Check
chapter about selection for advantages and disadvantages. There are also some more sophisticated
method, which changes parameters of selection during run of GA. Basically they behaves like
simulated annealing. But surely elitism should be used (if you do not use other method for saving
the best found solution). You can also try steady state selection.
Encoding
Encoding depends on the problem and also on the size of instance of the problem. Check chapter
about encoding for some suggestions or look to other resources.
Recommendations
Applications of GA
Genetic algorithms has been used for difficult problems (such as NP-hard problems), for machine
learning and also for evolving simple programs. They have been also used for some art, for evolving
pictures and music.
Advantage of GAs is in their parallelism. GA is travelling in a search space with more individuals (and
with genotype rather than phenotype) so they are less likely to get stuck in a local extreme like some
other methods.
They are also easy to implement. Once you have some GA, you just have to write new chromosome (just
one object) to solve another problem. With the same encoding you just change the fitness function and it
is all.On the other hand, choosing encoding and fitness function can be difficult.
Disadvantage of GAs is in their computational time. They can be slower than some other methods. But
with todays computers it is not so big problem.
To get an idea about problems solved by GA, here is a short list of some applications:
Nonlinear dynamical systems - predicting, data analysis
Designing neural networks, both architecture and weights
Robot trajectory
Evolving LISP programs (genetic programming)
Strategy planning
Finding shape of protein molecules
TSP and sequence scheduling
Functions for creating images
More information can be found through links in the appendix.
Operators of GA
V. Operators of GA
Overview
As you can see from the genetic algorithm outline, the crossover and mutation are the most important
part of the genetic algorithm. The performance is influenced mainly by these two operators. Before we
can explain more about crossover and mutation, some information about chromosomes will be given.
Encoding of a Chromosome
The chromosome should in some way contain information about solution which it represents. The most
used way of encoding is a binary string. The chromosome then could look like this:
Chromosome 1 1101100100110110
Chromosome 2 1101111000011110
Each chromosome has one binary string. Each bit in this string can represent some characteristic of the
solution. Or the whole string can represent a number - this has been used in the basic GA applet.
Of course, there are many other ways of encoding. This depends mainly on the solved problem. For
example, one can encode directly integer or real numbers, sometimes it is useful to encode some
permutations and so on.
Crossover
After we have decided what encoding we will use, we can make a step to crossover. Crossover selects
genes from parent chromosomes and creates a new offspring. The simplest way how to do this is to
choose randomly some crossover point and everything before this point point copy from a first parent
and then everything after a crossover point copy from the second parent.
Crossover can then look like this ( | is the crossover point):
Chromosome 1 11011 | 00100110110
Chromosome 2 11011 | 11000011110
Offspring 1
11011 | 11000011110
Offspring 2
11011 | 00100110110
Operators of GA
There are other ways how to make crossover, for example we can choose more crossover points.
Crossover can be rather complicated and very depends on encoding of the encoding of chromosome.
Specific crossover made for a specific problem can improve performance of the genetic algorithm.
Mutation
After a crossover is performed, mutation take place. This is to prevent falling all solutions in population
into a local optimum of solved problem. Mutation changes randomly the new offspring. For binary
encoding we can switch a few randomly chosen bits from 1 to 0 or from 0 to 1. Mutation can then be
following:
Original offspring 1 1101111000011110
Original offspring 2 1101100100110110
Mutated offspring 1 1100111000011110
Mutated offspring 2 1101101100110110
The mutation depends on the encoding as well as the crossover. For example when we are encoding
permutations, mutation could be exchanging two genes.
VI. GA Example
Minimum of Function
About the Problem
As you already know from the chapter about search space, problem solving can be often expressed as
looking for extreme of a function. This is exactly what the problem shown here is.
Some function is given and GA tries to find minimum of the function. For other problems we just have to
define search space and the fitness function which means to define the function, which we want to find
extreme for.
Example
You can try to run genetic algorithm at the following applet by pressing button Start. Graph represents
some search space and vertical lines represent solutions (points in search space). The red line is the best
solution, green lines are the other ones. Above the graph are displayed old and new population. Each
population consists of binary chromosomes - red and blue point means zeros and ones. On the applet you
can see process of forming the new population in steps.
Button Start starts the algorithm, Step performs one step (i.e. forming one new generation), Stop stops
the algorithm and Reset resets the population.
We suggest you to start with pressing button Step and watching how GA works in details. The outline of
GA has been introduced in one of the previous chapters. First you can see elitism and then forming new
offspring by crossover and mutation until a new population is completed.
Here is applet, but your browser does not support Java. If you want to see applets, please check browser
requirements.
Parameters of GA
VII. Parameters of GA
Crossover and Mutation Probability
There are two basic parameters of GA - crossover probability and mutation probability.
Crossover probability says how often will be crossover performed. If there is no crossover, offspring is
exact copy of parents. If there is a crossover, offspring is made from parts of parents' chromosome. If
crossover probability is 100%, then all offspring is made by crossover. If it is 0%, whole new generation
is made from exact copies of chromosomes from old population (but this does not mean that the new
generation is the same!).
Crossover is made in hope that new chromosomes will have good parts of old chromosomes and maybe
the new chromosomes will be better. However it is good to leave some part of population survive to next
generation.
Mutation probability says how often will be parts of chromosome mutated. If there is no mutation,
offspring is taken after crossover (or copy) without any change. If mutation is performed, part of
chromosome is changed. If mutation probability is 100%, whole chromosome is changed, if it is 0%,
nothing is changed.
Mutation is made to prevent falling GA into local extreme, but it should not occur very often, because
then GA will in fact change to random search.
Other Parameters
There are also some other parameters of GA. One also important parameter is population size.
Population size says how many chromosomes are in population (in one generation). If there are too few
chromosomes, GA have a few possibilities to perform crossover and only a small part of search space is
explored. On the other hand, if there are too many chromosomes, GA slows down. Research shows that
after some limit (which depends mainly on encoding and the problem) it is not useful to increase
population size, because it does not make solving the problem faster.
Some recommendations for all parameters can be found in one of the following chapters.
Example
Here you can see example similar to previous one. But here you can try to change crossover
and mutation probability. You can also control elitism.
On the graph below you can see performance of GA. Red is the best solution, blue is
average value (fitness) of all population.
Try to change parameters and look how GA behaves.
Here is applet, but your browser does not support Java. If you want to see applets, please check browser
Parameters of GA
requirements.
Question: If you try to increase mutation probability to 100%, GA will start to behave very
strange, nearly like if the mutation probability is 0%. Do you know why? You can use a hint
and if you still do not know, look at solution!
GA - 3D function
Example
Graph represents search space and lines represent solutions (points in search space). The red line is the
best solution, blue lines are the other ones.
You can enter your own function in a text field below graph (after change press enter or button Change).
Below it you can define limits of function. Function can consist of x, y, pi, e, (, ), /, *, +, -, !, ^ and
functions abs, acos, acosh, asin, asinh, atan, atanh, cos, cosh, ln, log, sin, sinh, sqr, sqrt, tan and tanh.
The graph can be rotated by dragging mouse over it.
You can also change crossover and mutation probability. Checkboxes control elitism and if it is looked
for minimum or maximum.
Try to change the function and look, how GA works. If you find some interesting function, where GA
behaves very good or very strange, you can email it to me.
Here is applet, but your browser does not support Java. If you want to see applets, please check browser
requirements.
Selection
IX. Selection
Introduction
As you already know from the GA outline, chromosomes are selected from the population to be parents
to crossover. The problem is how to select these chromosomes. According to Darwin's evolution theory
the best ones should survive and create new offspring. There are many methods how to select the best
chromosomes, for example roulette wheel selection, Boltzman selection, tournament selection, rank
selection, steady state selection and some others.
Some of them will be described in this chapter.
Then a marble is thrown there and selects the chromosome. Chromosome with bigger fitness will be
selected more times.
This can be simulated by following algorithm.
1. [Sum] Calculate sum of all chromosome fitnesses in population - sum S.
2. [Select] Generate random number from interval (0,S) - r.
3. [Loop] Go through the population and sum fitnesses from 0 - sum s. When the sum s is greater
then r, stop and return the chromosome where you are.
Of course, step 1 is performed only once for each population.
Selection
Rank Selection
The previous selection will have problems when the fitnesses differs very much. For example, if the best
chromosome fitness is 90% of all the roulette wheel then the other chromosomes will have very few
chances to be selected.
Rank selection first ranks the population and then every chromosome receives fitness from this ranking.
The worst will have fitness 1, second worst 2 etc. and the best will have fitness N (number of
chromosomes in population).
You can see in following picture, how the situation changes after changing fitness to order number.
Selection
Steady-State Selection
This is not particular method of selecting parents. Main idea of this selection is that big part of
chromosomes should survive to next generation.
GA then works in a following way. In every generation are selected a few (good - with high fitness)
chromosomes for creating a new offspring. Then some (bad - with low fitness) chromosomes are
removed and the new offspring is placed in their place. The rest of population survives to new
generation.
Elitism
Idea of elitism has been already introduced. When creating new population by crossover and mutation,
we have a big chance, that we will loose the best chromosome.
Elitism is name of method, which first copies the best chromosome (or a few best chromosomes) to new
population. The rest is done in classical way. Elitism can very rapidly increase performance of GA,
because it prevents losing the best found solution.
Encoding
X. Encoding
Introduction
Encoding of chromosomes is one of the problems, when you are starting to solve problem with GA.
Encoding very depends on the problem.
In this chapter will be introduced some encodings, which have been already used with some success.
Binary Encoding
Binary encoding is the most common, mainly because first works about GA used this type of encoding.
In binary encoding every chromosome is a string of bits, 0 or 1.
Chromosome A 101100101100101011100101
Chromosome B 111111100000110000011111
Example of chromosomes with binary encoding
Binary encoding gives many possible chromosomes even with a small number of alleles. On the other
hand, this encoding is often not natural for many problems and sometimes corrections must be made after
crossover and/or mutation.
Example of Problem: Knapsack problem
The problem: There are things with given value and size. The knapsack has given capacity.
Select things to maximize the value of things in knapsack, but do not extend knapsack
capacity.
Encoding: Each bit says, if the corresponding thing is in knapsack.
Permutation Encoding
Permutation encoding can be used in ordering problems, such as travelling salesman problem or task
ordering problem.
Encoding
Value Encoding
Direct value encoding can be used in problems, where some complicated value, such as real numbers, are
used. Use of binary encoding for this type of problems would be very difficult.
In value encoding, every chromosome is a string of some values. Values can be anything connected to
problem, form numbers, real numbers or chars to some complicated objects.
Chromosome A 1.2324 5.3243 0.4556 2.3293 2.4545
Chromosome B
ABDJEIFJDHDIERJFDLDFLFEGT
Encoding
Tree Encoding
Tree encoding is used mainly for evolving programs or expressions, for genetic programming.
In tree encoding every chromosome is a tree of some objects, such as functions or commands in
programming language.
Chromosome A
Chromosome B
(+ x (/ 5 y))
Binary Encoding
Crossover
Single point crossover - one crossover point is selected, binary string from beginning of
chromosome to the crossover point is copied from one parent, the rest is copied from the second
parent
11001011+11011111 = 11001111
Two point crossover - two crossover point are selected, binary string from beginning of
chromosome to the first crossover point is copied from one parent, the part from the first to the
second crossover point is copied from the second parent and the rest is copied from the first parent
Permutation Encoding
Crossover
Single point crossover - one crossover point is selected, till this point the permutation is copied from
the first parent, then the second parent is scanned and if the number is not yet in the offspring it is
added
Note: there are more ways how to produce the rest after crossover point
(1 2 3 4 5 6 7 8 9) + (4 5 3 6 8 9 7 2 1) = (1 2 3 4 5 6 8 9 7)
Mutation
Order changing - two numbers are selected and exchanged
(1 2 3 4 5 6 8 9 7) => (1 8 3 4 5 6 2 9 7)
Value Encoding
Crossover
All crossovers from binary encoding can be used
Mutation
Adding a small number (for real value encoding) - to selected values is added (or subtracted) a small
http://cs.felk.cvut.cz/~xobitko/ga/cromu.html (2 of 3) [7.5.2000 16:33:11]
TSP Example
Implementation
Population of 16 chromosomes is used. For encoding these chromosome permutation encoding is used in chapter about encoding you can find, how to encode permutation of cities for TSP. TSP is solved on
complete graph (i.e. each node is connected to each other) with euclidian distances. Note that after
adding and deleting city it is necessary to create new chromosomes and restart whole genetic algorithm.
You can select crossover and mutation type. I will describe what they mean.
Crossover
One point - part of the first parent is copied and the rest is taken in the same order as in the second
parent
Two point - two parts of the first parent are copied and the rest between is taken in the same order
as in the second parent
None - no crossover, offspring is exact copy of parents
Mutation
Normal random - a few cities are chosen and exchanged
Random, only improving - a few cities are randomly chosen and exchanged only if they improve
solution (increase fitness)
Systematic, only improving - cities are systematically chosen and exchanged only if they improve
solution (increase fitness)
Random improving - the same as "random, only improving", but before this is "normal random"
mutation performed
Systematic improving - the same as "systematic, only improving", but before this is "normal
random" mutation performed
None - no mutation
TSP Example
Implementation
Population of 16 chromosomes is used. For encoding these chromosome permutation encoding is used in chapter about encoding you can find, how to encode permutation of cities for TSP. TSP is solved on
complete graph (i.e. each node is connected to each other) with euclidian distances. Note that after
adding and deleting city it is necessary to create new chromosomes and restart whole genetic algorithm.
You can select crossover and mutation type. I will describe what they mean.
Crossover
One point - part of the first parent is copied and the rest is taken in the same order as in the second
parent
Two point - two parts of the first parent are copied and the rest between is taken in the same order
as in the second parent
None - no crossover, offspring is exact copy of parents
Mutation
Normal random - a few cities are chosen and exchanged
Random, only improving - a few cities are randomly chosen and exchanged only if they improve
solution (increase fitness)
Systematic, only improving - cities are systematically chosen and exchanged only if they improve
solution (increase fitness)
Random improving - the same as "random, only improving", but before this is "normal random"
mutation performed
Systematic improving - the same as "systematic, only improving", but before this is "normal
random" mutation performed
None - no mutation
TSP Example
Example
Following applet shows GA on TSP. Button "Change View" changes view from whole population to best
solution and vice versa. You can add and remove cities by clicking on the graph. After adding or deleting
random tour will appear because of creating new population with new chromosomes. Also note that we
are solving TSP on complete graph.
Try to run GA with different crossover and mutation and note how the performance (and speed - add
more cities to see it) of GA changes.
Known bug: Please press button "Change View" before doing anything else otherwise some graphs will
not respond in some browsers. I am using CardLayout and I don't know how to make it work right. If you think you know, please mail me.
Here is applet, but your browser does not support Java. If you want to see applets, please check browser
requirements.
Answers
1. Question: Applets are not working, I see only errors. What shoud I do?
Answer: First look at browser recommendations.
You have probably browser with other version of Java than Java 1.1. Even some browsers,
which have in description, that they support Java 1.1., really support Java 1.0 (without new
event model). I suggest you upgrade your browser (sometimes is enough to change certain
libraries).
Sometimes this error is caused by an error in class transmition. In this case try to reload the
class or simply try it again after some time. If for example the browser says that the class
Population was not found then try to reload
http://cs.felk.cvut.cz/~xobitko/ga/java/Population.class and then reload the page with the
applet.
2. Question: I have a question concerning GA, can you help me with it?
Answer: Well, you can send me your question, if I will have time (which is not very often) I
will answer. Still better, post your question to newsgroup comp.ai.genetic, there you have
bigger chance that someone will answer.
4. Question: Can this site be downloaded as a single file?
Answer: Yes, as a zipped pdf file. Get the Acrobat Reader to read it. But of course, you will
see no applets in this version.
5. Question: Will you create a site like this about neural networks?
Answer: I will try to find a time to do that. Meantime you can look at a page with one
applet illustrationg prediction by means of backpropagation neural network.
6. Question: Will there be any translation of this site to other languages?
Answer: There is a Japanese translation at http://mgknt4.tmit.ac.jp/mana/file/ga/index.html
translated by Ishii Manabu. Maybe I will translate it to Czech if I will find some time. Other
translation are welcomed - please contact me if you would like to make a translation.
Access statistics
Overall information
Graphs