- Creation: It creates 20 random genes (strings) that are the same length as the target string (the one you input).
- Fitness: It deteremines how "far" each is from the target string.
- Mating: The two "closest" strings are mated (the first half of each is spliced with the second half of the other).
- Mutation: Every generation, each of the 20 strings has a 50/50 chance of getting mutated (having one character changed up or down by one place. For example, an E might become a D or an F).
- Evolution: Repeat from step 2 until the target is found.
STRINGS
Not a neural network yet, but this IS a genetic algorithm. Baby steps.
try me!