Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Inheritance (genetic algorithm)
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{Short description|Computer science property of heuristically modeled objects}} {{For|information about inheritance in biology|heredity}} In [[genetic algorithm]]s, '''inheritance''' is the ability of modeled objects to [[mating|mate]], [[mutation (genetic algorithm)|mutate]] (similar to [[biology|biological]] [[mutation]]), and propagate their problem solving [[gene]]s to the next [[generation]], in order to produce an evolved solution to a particular problem. The [[selection (genetic algorithm)|selection]] of objects that will be inherited from in each successive generation is determined by a [[fitness function]], which varies depending upon the problem being addressed.<ref name="Stuart Norvig 1995">Russell, Stuart J.; Norvig, Peter (1995). ''[[Artificial Intelligence: A Modern Approach]]''. Englewood Heights, NJ: Prentice-Hall.</ref> The traits of these objects are passed on through [[chromosome]]s by a means similar to biological [[reproduction]]. These chromosomes are generally represented by a series of [[gene]]s, which in turn are usually represented using [[binary number]]s. This propagation of traits between generations is similar to the inheritance of [[phenotypic trait|traits]] between generations of biological [[organism]]s. This process can also be viewed as a form of [[reinforcement learning]], because the [[evolution]] of the objects is driven by the passing of traits from successful objects which can be viewed as a [[reinforcement|reward]] for their success, thereby promoting beneficial traits.<ref name="Stuart Norvig 1995" /> == Process == Once a new generation is ready to be created, all of the individuals that have been successful and have been chosen for reproduction are randomly paired together. Then the traits of these individuals are passed on through a combination of [[crossover (genetic algorithm)|crossover]] and mutation.<ref name="Stuart Norvig 1995" /> This process follows these basic steps: # Pair off successful objects for mating. # Determine randomly a crossover point for each pair. # Switch the genes after the crossover point in each pair. # Determine randomly if any genes are mutated in the child objects. After following these steps, two child objects will be produced for every pair of parent objects used. Then, after determining the success of the objects in the new generation, this process can be repeated using whichever new objects were most successful. This will usually be repeated until either a desired generation is reached or an object that meets a minimum desired result from the fitness function is found. While crossover and mutation are the common [[genetic operator]]s used in inheritance, there are also other operators such as regrouping and colonization-extinction.{{cn|date=November 2019}} === Example === Assume these two strings of bits represent the traits being passed on by two parent objects: * Object 1: 1100011010110001 * Object 2: 1001100110011001 Now, consider that the crossover point is randomly positioned after the fifth bit: * Object 1: 11000 | 11010110001 * Object 2: 10011 | 00110011001 During crossover, the two objects will swap all of the bits after the crossover point, leading to: * Object 1: 11000 | 00110011001 * Object 2: 10011 | 11010110001 Finally, mutation is simulated on the objects by there being zero or more bits flipped randomly. Assuming the tenth bit for object 1 is mutated, and the second and seventh bits are mutated for object 2, the final children produced by this inheritance would be: * Object 1: 1100000111011001 * Object 2: 1101110010110001 == See also == * [[Artificial intelligence]] * [[Bioinformatics]] * [[Speciation (genetic algorithm)]] == References == {{Reflist}} == External links == * [http://www.boxcar2d.com/ BoxCar 2D] An interactive example of the use of a genetic algorithm to construct 2-dimensional cars. {{DEFAULTSORT:Inheritance (Genetic Algorithm)}} [[Category:Genetic algorithms]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:Cn
(
edit
)
Template:For
(
edit
)
Template:Reflist
(
edit
)
Template:Short description
(
edit
)