Content deleted Content added
Wiki fmt biblio & external links. Remove bold on "toy". Use wikilink for Nichael Lynn Cramer, move link to external links, prefer wikilinks inline. Define GP & GA acronyms. |
added links to Schmidhuber's GP site and Langdon's GP bibliography |
||
Line 1:
'''Genetic programming''' ('''GP''') is a subfield of [[evolutionary computation]] invented by Nichael Lynn Cramer in 1985 and first explored in depth by [[John Koza]] in his 1992 book ''[[Genetic Programming: On the Programming of Computers by Means of Natural Selection]]''. It is a method used to allow computer [[programming|programs]] to be evolved according to some user-defined goal. It uses [[evolution]]ary patterns, using [[crossover]], selection, replication and [[mutation|mutations]] to evolve the programs which are usually represented by [[Lisp programming language|LISP]] expressions. In order to work effectively, it requires an appropriate selection of operators and variables.
Genetic programming uses methods which are similar to [[genetic algorithm]]s (GA), but is based on programs which perform tasks the results of which can then be evaluated to deliver a fitness function similar to GAs. Instead of using pools of parameter lists to be evaluated by some evaluation procedure, GP uses pools of programs which are to be run to perform the required task. A technical difference between GAs and GPs is that GAs use list structures, often fixed size, for the storage of their data, while GPs use tree structures which can vary in size and shape for each program used in the program pools.
The application of a tree representation (and required genetic operators) for using [[genetic algorithm]]s to generate programs was first described in 1985 by the above-mentioned [[Nichael Lynn Cramer]]. As such, Koza did not invent genetic programming, but he is indisputably the field's most prolific and persuasive author.
So far GPs have successfully solved some toy problems, such as the lawn mower problem, but the method is very computationally intensive, and may not compare favourably where simpler methods, such as [[genetic algorithm]]s or [[random optimisation]] can be used instead. It is possible that some more complex problems may be more amenable to solution using GPs than other optimization methods.
Line 23:
*[http://www.faqs.org/faqs/ai-faq/genetic/part1/preamble.html The Hitch-Hiker's Guide to Evolutionary Computation]
*[http://www.genetic-programming.com John Koza's Genetic Programming Site]
*[http://www.idsia.ch/~juergen/gp.html Juergen Schmidhuber's GP Site, with pre-Koza GP papers (1987)]
*[http://www.cs.bham.ac.uk/~wbl/biblio/README.html Bill Langdon's GP bibliography]
|