About Genetic Programming
Genetic Programming (GP) is a type of Evolutionary Algorithm (EA), a subset of machine learning. EAs are used to discover solutions to problems humans do not know how to solve, directly. Free of human preconceptions or biases, the adaptive nature of EAs can generate solutions that are comparable to, and often better than the best human efforts.*
Inspired by biological evolution and its fundamental mechanisms, GP software systems implement an algorithm that uses random mutation, crossover, a fitness function, and multiple generations of evolution to resolve a user-defined task. GP can be used to discover a functional relationship between features in data (symbolic regression), to group data into categories (classification), and to assist in the design of electrical circuits, antennae, and quantum algorithms. GP is applied to software engineering through code synthesis, genetic improvement, automatic bug-fixing, and in developing game-playing strategies, … and more.
Types of GP include:
- Tree-based Genetic Programming
- Stack-based Genetic Programming
- Linear Genetic Programming (LGP)
- Grammatical Evolution
- Extended Compact Genetic Programming (ECGP)
- Cartesian Genetic Programming (CGP)
- Probabilistic Incremental Program Evolution (PIPE)
- Strongly Typed Genetic Programming (STGP)
- Genetic Improvement of Software for Multiple Objectives (GISMO)
How does Genetic Programming work? Learn about the Generational GP Algorithm …