Lately I'm interested in a topic of genetic algorithms, but i couldn't find any good resource. If you know any good resource, book or a site i would appreciate it. I have solid knowledge of algorithms and A.I. but im looking for something with good introduction in genetic programing.

link|improve this question

Are you specifically looking for genetic algorithms, or genetic programming? – Dan Dyer Feb 4 '09 at 0:02
Primary genetic algorithms – Siblja Feb 4 '09 at 12:34
2  
GP != GA != Hill Climbing with mutation – bias May 29 '09 at 13:06
feedback

12 Answers

up vote 5 down vote accepted

Best references for me so far:

Also if you're an absolute beginner I'd suggest you to start with the Hello World of Genetics Algorithms. There's nothing like a nice clean example to get started.

link|improve this answer
feedback

I found Melanie Mitchell's book, An Introduction to Genetic Algorithms, to be very good. For a wider coverage of evolutionary computation topics, Introduction to Evolutionary Computing by Eiben and Smith is also worthwhile.

If you're just starting out, I recently wrote an introductory article that may be of use.

There are further links both in that article and also on the home page for my evolutionary computation framework.

link|improve this answer
feedback

Here is Roger Alsing's recent article about building "Mona Lisa's picture" with a genetic algorithm :http://rogeralsing.com/2008/12/07/genetic-programming-evolution-of-mona-lisa/

Edited to remove hot link to the picture See: http://rogeralsing.files.wordpress.com/2008/12/evolutionofmonalisa1.gif

I've implemented my own version of this algorithm:

http://23.media.tumblr.com/NngfN9gsDhlsyws3NvFcuHfgo1_400.png

See http://plindenbaum.blogspot.com/2008/12/random-notes-2008-12.html

link|improve this answer
Thats a cool image sequence, I doubt the owner of that blog would like you hotlinking it though. – Jamie Penney Feb 3 '09 at 22:38
@Jamie. You're right. I removed the link. – Pierre Feb 3 '09 at 22:43
5  
The original is not even close to a genetic algorithm (haven't looked at yours though). Its simulated annealing with a greedy acceptance criteria. – Steve Feb 3 '09 at 23:51
Be careful what you're calling a GA! – bias May 29 '09 at 13:05
feedback

This is a nice free book on the subject

http://www.lulu.com/items/volume_63/2167000/2167025/2/print/book.pdf

link|improve this answer
feedback

There is a great introduction to genetic algorithms at AI-Junkie.com as well as tutorials on many other AI and machine learning techniques. The genetic algorithms tutorial is aimed to 'explain genetic algorithms sufficiently for you to be able to use them in your own projects' while keeping the mathematics down as much as possible.

link|improve this answer
feedback

I know this is an old question, but no answer has been accepted yet, so I thought I'd add my own contribution. One of the best free resources in my opinion for all things related to evolutionary computation (genetic algorithms, evolution strategies, genetic programming, etc.) is Sean Luke's online book Essentials of Metaheuristics.

link|improve this answer
feedback

If I may plug one of my favorite books, The Algorithm Design Manual by Steve Skiena has a great section on genetic algorithms (plus a lot of other interesting heuristics for solving various types of problems).

link|improve this answer
feedback

The book Programming Collective Intelligence by OReilly had chapter covering genetic algorithms. It might be a little bit to basic but it was a very illustrating example.

link|improve this answer
feedback

A short introduction I wrote a long time ago is available here, but a better short introduction is here.

For a larger and comprehensive, although somewhat out-dated, list of resources visit the comp.ai.genetic FAQ.

link|improve this answer
feedback

Practical Genetic Algorithms

link|improve this answer
feedback

'An Introduction to Genetic Algorithms' http://www.burns-stat.com/pages/Tutor/genetic.html

link|improve this answer
feedback

I have started blogging on this subject lately. For an example of how to apply genetic algorithms to routing optimization in telecoms networks, I have a post here.

Another example, which includes Visual Studio C++ projects, is a stab at applying GAs to optimize mathematical functions, in this case the Rosenbrock function.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.