noc-book-2/content/09_ga.html
2023-10-08 15:42:32 +00:00

1686 lines
No EOL
129 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<section data-type="chapter">
<h1 id="chapter-9-evolutionary-computing">Chapter 9. Evolutionary Computing</h1>
<div class="chapter-opening-quote">
<blockquote data-type="epigraph">
<p>“Time flies like an arrow; fruit flies like a banana.”</p>
<p>— Unknown</p>
</blockquote>
</div>
<div class="chapter-opening-figure">
<figure>
<img src="images/09_ga/09_ga_1.png" alt="Chaco Anasazi bowl 11th/13th centuries, photo from the National Park Service, public domain. ">
<figcaption><strong>Chaco Anasazi bowl 11th/13th centuries, photo from the National Park Service, public domain.</strong></figcaption>
</figure>
<p><strong>Pueblo Pottery</strong></p>
<p>For centuries, pottery created by the Ancestral Puebloans and Mogollon cultures of the southwestern United States and northern Mexico has held great significance in both ceremonial and everyday contexts. Techniques and design elements are passed down through generations, with each potter learning, preserving, and subtly adapting these designs. This ongoing process gives rise to a continually evolving tapestry of familial and cultural expression.</p>
</div>
<p>Take a moment to think back to a simpler time, when you wrote your first p5.js sketches and life was free and easy. What was a fundamental programming concept that you likely used in those first sketches and continue to use over and over again to this day? <em>Variables</em>. Variables allow you to save data and reuse it while a program runs.</p>
<p>Of course, this is nothing new. In this book, youve moved far beyond sketches with just one or two simple variables, working up to sketches organized around more complex data structures: variables holding custom objects that include both data and functionality. Youve used these complex data structures—classes—to build your own little worlds of movers and particles and vehicles and cells and trees. But theres been a catch: in each and every example in this book, youve had to worry about initializing the properties of these objects. Perhaps you made a whole set of particles with random colors and sizes, or a list of vehicles all starting at the same <span data-type="equation">x,y</span> position.</p>
<p>What if, instead of acting as “intelligent designers,” assigning the properties of the objects through randomness or thoughtful consideration, you could let a process found in nature—<strong>evolution</strong><em></em>decide the values for you? Can you think of the variables of a JavaScript object as the objects DNA? Can objects give birth to other objects and pass down their DNA to a new generation? Can a p5.js sketch evolve?</p>
<p>The answer to all these questions is a resounding yes, and getting to that answer will be the focus of this chapter. After all, this book would hardly be complete without tackling a simulation of one of the most powerful algorithmic processes found in nature itself, biological evolution. This chapter is dedicated to examining the principles behind evolutionary processes and finding ways to apply those principles in code.</p>
<h2 id="genetic-algorithms-inspired-by-actual-events">Genetic Algorithms: Inspired by Actual Events</h2>
<p>The primary means for developing code systems that evolve are <strong>genetic algorithms</strong> (<strong>GAs</strong> for short), a type of algorithm inspired by the core principles of Darwinian evolutionary theory. In these algorithms, populations of potential solutions to a problem evolve over generations through processes that mimic natural selection in biological evolution. While computer simulations of evolutionary processes date back to the 1950s, much of our contemporary understanding of genetic algorithms stems from the work of John Holland, a professor at the University of Michigan whose 1975 book <em>Adaptation in Natural and Artificial Systems</em> pioneered GA research. Today, genetic algorithms are part of a wider field of thats often referred to as <strong>evolutionary computing</strong>.</p>
<p>To be clear, genetic algorithms are only <em>inspired</em> by genetics and evolutionary theory; GAs arent intended to precisely implement the science behind these fields. As I explore genetic algorithms in this chapter, I wont be making Punnett squares (sorry to disappoint), and there will be no discussion of nucleotides, protein synthesis, RNA, or other topics related to the biological processes of evolution. I dont care so much about creating a scientifically accurate simulation of evolution as it happens in the physical world; rather, I care about methods for applying evolutionary strategies in software.</p>
<p>This isnt to say that a project with more scientific depth wouldnt have value. In fact, theres a whole field of computational biology research that <em>does</em> take on the challenge of more accurately simulating biological evolutionary processes! I encourage readers with a particular interest in this topic to explore possibilities for expanding the examples provided with additional evolutionary features. Nevertheless, for the sake of keeping things manageable, Im going to stick to the basics. And as it happens, the basics will be plenty complex and exciting.</p>
<p>I should also note that, strictly speaking, the term “genetic algorithm” refers to a specific algorithm implemented in a specific way to solve specific sorts of problems, and not all of those specifics are important to this book. While the formal genetic algorithm itself will serve as the foundation for the examples in this chapter, I wont make a fuss about implementing the algorithm with perfect accuracy, given that Im looking for creative applications of evolutionary theory in code. As such, this chapter will be broken down into the following three parts:</p>
<ol>
<li><strong>Traditional Genetic Algorithm.</strong> Ill begin with the traditional, “textbook” genetic algorithm. This algorithm was developed to solve problems in computer science where the solution space is so vast that a “brute force” algorithm would take too long. Heres an example: Im thinking of a number between one and one billion. How long will it take for you to guess it? With a brute force approach, youd have to check every possible solution. Is it one? Is it two? Is it three? Is it four? . . . Luck plays a factor here (maybe I happened to pick five!), but “on average” you would end up spending years counting up from one before hitting the correct answer. However, what if I could tell you if your answer was good or bad? Warm or cold? Very warm? Hot? Ice frigid? If you could evaluate how close (or “fit”) your guesses are, you could start picking numbers accordingly and arrive at the answer more quickly. Your answer would <em>evolve</em>.</li>
<li><strong>Interactive Selection. </strong>After<strong> </strong>exploring the traditional computer science version, Ill examine other applications of genetic algorithms in the visual arts. “Interactive selection” refers to the process of evolving something (often a computer-generated image) through user interaction. Lets say you walk into a museum gallery and see 10 paintings. With interactive selection, you might pick your favorites and allow an algorithmic process to generate (or “evolve”) new paintings based on your preferences.</li>
<li><strong>Ecosystem Simulation.</strong> The traditional computer science genetic algorithm and interactive selection technique are what youll likely find if you search online or read a textbook about artificial intelligence. But as you'll soon see, they dont really simulate the process of evolution as it happens in the physical world. In this chapter, Ill also explore techniques for simulating the process of evolution in an ecosystem of artificial creatures. How can the objects that move about a canvas meet each other, mate, and pass their genes on to a new generation? This could apply directly to the Ecosystem Project outlined at the end of each chapter. It will also be particularly relevant as I explore the concept of “neuroevolution” in Chapter 11.</li>
</ol>
<h2 id="why-use-genetic-algorithms">Why Use Genetic Algorithms?</h2>
<p>To help illustrate the utility of the traditional genetic algorithm, Im going to start with cats. No, not just your every day feline friends. Im going to start with some purr-fect cats that paw-sess a talent for typing, with the goal of producing the complete works of Shakespeare (Figure 9.1).</p>
<figure>
<img src="images/09_ga/09_ga_2.png" alt="Figure 9.1: Infinite cats typing at infinite keyboards">
<figcaption>Figure 9.1: Infinite cats typing at infinite keyboards</figcaption>
</figure>
<p>This is my meow-velous<em> </em>twist on the <strong>infinite monkey theorem, </strong>which<strong> </strong>is stated as follows: A monkey hitting keys randomly on a typewriter will eventually type the complete works of Shakespeare given an infinite amount of time. Its only a theory because in practice the number of possible combinations of letters and words makes the likelihood of the monkey <em>actually</em> typing Shakespeare minuscule. To put it in perspective, even if the monkey had started typing at the beginning of the universe, the probability that by now it would have produced just <em>Hamlet</em>, to say nothing of the <em>entire</em> works of Shakespeare, is still absurdly unlikely.</p>
<p>Consider a cat named Clawdius. Clawdius types on a reduced typewriter containing only 27 characters: the 26 English letters plus the spacebar. The probability of Clawdius hitting any given key is 1 in 27.</p>
<p>Next, consider the phrase “to be or not to be that is the question” (for simplicity, Im ignoring capitalization and punctuation). The phrase is 39 characters long, including spaces. If Clawdius starts typing, the chance hell get the first character right is 1 in 27. Since the probability hell get the second character right is also 1 in 27, he has a 1 in 729 (<span data-type="equation">27 \times 27</span>) chance of landing the first two characters in correct order. (This follows directly from our discussion of probability in Chapter 0.) Therefore, the probability that Clawdius will type the full phrase is 1 in 27 multiplied by itself 39 times, or <span data-type="equation">(1/27)^{39}</span>. That equals a probability of . . .</p>
<p><span data-type="equation">1 \text{ in } \text{66,555,937,033,867,822,607,895,549,241,096,482,953,017,615,834,735,226,163}</span></p>
<p>Needless to say, even hitting just this one phrase, let alone an entire play, let alone all 38 Shakespeare plays (yes, even <em>Two Noble Kinsmen</em>) is highly unlikely. Even if Clawdius were a computer simulation and could type a million random phrases per second, for Clawdius to have a 99 percent probability of eventually getting just the one phrase right, he would have to type for 9,719,096,182,010,563,073,125,591,133,903,305,625,605,017 years. (For comparison, the universe is estimated to be a mere 13,750,000,000 years old.)</p>
<p>The point of all these unfathomably large numbers isnt to give you a headache, but to demonstrate that a brute force algorithm (typing every possible random phrase) isnt a reasonable strategy for arriving randomly at “to be or not to be that is the question.” Enter genetic algorithms, which start with random phrases and swiftly find the solution through simulated evolution, leaving plenty of time for Clawdius to savor a cozy catnap.</p>
<p>To be fair, this particular problem (<em>arrive at the phrase “to be or not to be that is the question”</em>) is a ridiculous one. Since you know the answer already, all you need to do is type it. Heres a p5.js sketch that solves the problem:</p>
<pre class="codesplit" data-code-language="javascript">let s = "to be or not to be that is the question";
console.log(s);</pre>
<p>Nevertheless, its a terrific problem to start with since having a known answer will allow you to easily test the code and evaluate the success of the genetic algorithm. Once youve successfully solved the problem, you can feel more confident in using genetic algorithms to do something actually useful: solving problems with <em>unknown</em> answers. This first example serves no real purpose other than to demonstrate how genetic algorithms work. If you test the GA results against the known answer and get “to be or not to be,” then youve succeeded in writing a genetic algorithm.</p>
<div data-type="exercise">
<h3 id="exercise-91">Exercise 9.1</h3>
<p>Create a sketch that generates random strings. Youll need to know how to do this in order to implement the genetic algorithm example that will shortly follow. How long does it take for p5.js to randomly generate the string “cat”? How might you adapt this to generate a random design using p5.jss shape-drawing functions?</p>
</div>
<h2 id="how-genetic-algorithms-work">How Genetic Algorithms Work</h2>
<p>Before I get to any code, Id like to take some time to walk through the steps of the classic genetic algorithm in a more general way. Ill illustrate how a population of “creatures” (a generic term for the elements of a simulation) can evolve over a series of generations. To understand how this works, its important to outline three core principles of Darwinian evolution. If natural selection is to occur in code as it does in nature, all three of these elements must be present.</p>
<ol>
<li><strong>Heredity.</strong> There must be a mechanism that allows “parent” creatures in one generation to pass their traits down to “child” creatures in the next generation.</li>
<li><strong>Variation. </strong>There must be a variety of traits present in the population of creatures or a means with which to introduce variation for evolution to take place. Imagine if there were a population of beetles in which all the beetles were exactly the same: same color, same size, same wingspan, same everything. Without any variety in the population, the children would always be identical to the parents and to each other. New combinations of traits can never occur, and nothing can evolve.</li>
<li><strong>Selection. </strong>There must be a mechanism by which some creatures have the opportunity to be parents and pass on their genetic information, while others dont. This is commonly referred to as “survival of the fittest.” Take, for example, a population of gazelles that are chased by lions. The faster gazelles have a better chance of escaping the lions, increasing their chances of living longer, reproducing, and passing on their genetic information to offspring. The term <em>fittest</em> can be misleading, however. Its often thought to mean biggest, fastest, or strongest, but while it can sometimes encompass physical attributes like size, speed, or strength, it doesnt have to. The core of natural selection lies in whatever traits best suit an organism's environment and increasing the likelihood of survival and ultimately reproduction. Instead of asserting superiority, “fittest” can be better understood as “able to reproduce.” Take the “Dolania americana” (also known as the American sand-burrowing mayfly), which is believed to have the shortest lifespan of any insect. An adult female lives for only 5 minutes, but as long as it has managed to deposit its egg in the water, it will pass its genetic information to the next generation. For the typing cats, a more “fit” cat, one that I will assign as more likely to reproduce, is one that has typed more words present in a given phrase of Shakespeare.</li>
</ol>
<p>I want to emphasize the context in which Im applying these Darwinian concepts: a simulated, artificial environment where specific goals can be quantified, all for the sake of creative exploration. Throughout history, the principles of genetics have been used to harm those who have been marginalized and oppressed by dominant societal structures. I believe it is essential to approach projects involving genetic algorithms with careful consideration of the language used, and to ensure that the documentation and descriptions of the work are framed inclusively.</p>
<p>With these concepts established, Ill begin walking through the narrative of the genetic algorithm. I'll do this in the context of typing cats. The algorithm itself will be divided into several steps that unfold over two parts: a set of conditions for initialization, and the steps that are repeated over and over again until the correct phrase is found.</p>
<h3 id="step-1-creating-a-population">Step 1: Creating a Population</h3>
<p>For typing cats, the first step of the genetic algorithm is to create a population of phrases. Im using the term “phrase” rather loosely to mean any string of characters. These phrases are the “creatures” of this example, though of course they arent very creature-like.</p>
<p>In creating the population of phrases, the Darwinian principle of <strong>variation</strong> applies. Lets say for the sake of simplicity that Im trying to evolve the phrase “cat” and that I have a population of three phrases.</p>
<table>
<tbody>
<tr>
<td>rid</td>
</tr>
<tr>
<td>won</td>
</tr>
<tr>
<td>hug</td>
</tr>
</tbody>
</table>
<p>Sure, theres variety in these three phrases above, but try to mix and match the characters every which way and youll never get <em>cat</em>. There isnt <em>enough</em> variety here to evolve the optimal solution. However, if there were a population of thousands of phrases, all generated randomly, chances are that at least one phrase would have a <em>c</em> as the first character, one will have an <em>a</em> as the second, and one a <em>t</em> as the third. A large population will most likely provide enough variety to generate the desired phrase. (In step 3 of the algorithm, I'll also demonstrate another mechanism to introduce more variation in case there isnt enough in the first place.) Step 1 can therefore be described as follows:</p>
<p><span class="highlight">Create a population of randomly generated elements.</span></p>
<p>“Element” is perhaps a better, more general-purpose term than “creature.” But what is the element itself? As you move through the examples in this chapter, youll see several different scenarios; you might have a population of images or a population of vehicles à la Chapter 5. The part thats new in this chapter is that each element, each member of the population, has virtual “DNA,” a set of properties (you could also call them “genes”) that describe how a given element looks or behaves. In the case of the typing cats, for example, the DNA could be a string of characters. With this in mind, I can be even more specific and describe step 1 of the genetic algorithm as:</p>
<p><span class="highlight">Create a population of <span data-type="equation">N</span> elements, each with randomly generated DNA.</span></p>
<p>In the field of genetics, theres an important distinction between the concepts <strong>genotype</strong> and <strong>phenotype</strong>. The actual genetic code—the particular sequence of molecules in the DNA—is an organisms genotype. This is what gets passed down from generation to generation. The phenotype, by contrast, is the <em>expression</em> of that data—this cat will be big, that cat will be small, that other cat will be a particularly fast and effective typist.</p>
<p>The genotype/phenotype distinction is key to creatively using genetic algorithms. What are the objects in your world? How will you design the genotype for those objects—the data structure to store each objects properties, and the values those properties take on? And how will you use that information to design the phenotype? That is, what do <em>you</em> want these variables to actually express?</p>
<p>We do this all the time in graphics programming, taking values (the genotype) and interpreting them in a visual way (the phenotype). The simplest example is probably color.</p>
<table>
<thead>
<tr>
<th>Genotype <code>100px</code></th>
<th>Phenotype <code>140px</code></th>
</tr>
</thead>
<tbody>
<tr>
<td><span style="width:140px;">0</span></td>
<td>
<div style="display: inline-block; vertical-align: sub; height: 18px; width: 18px; background-color: #000000; border: 1px solid black;"></div>
</td>
</tr>
<tr>
<td>127</td>
<td>
<div style="display: inline-block; vertical-align: sub; height: 18px; width: 18px; background-color: #7F7F7F; border: 1px solid black;"></div>
</td>
</tr>
<tr>
<td>255</td>
<td>
<div style="display: inline-block; vertical-align: sub; height: 18px; width: 18px; background-color: #FFFFFF; border: 1px solid black;"></div>
</td>
</tr>
</tbody>
</table>
<p>Think of the genotype as the digital information, the data that represents color—in the case of grayscale values, an integer between 0 and 255. How you choose to express the data is arbitrary: a red value, a green value, and a blue value. It doesnt even need to be color at all: in a different approach, you could use the same values to describe the length of a line, the weight of a force, and so on.</p>
<table>
<thead>
<tr>
<th>Same Genotype</th>
<th>Different Phenotype (line length)</th>
</tr>
</thead>
<tbody>
<tr>
<td>0</td>
<td></td>
</tr>
<tr>
<td>127</td>
<td>
<div style="display: inline-block; vertical-align: sub; width: 127px; height: 1px; background-color: #000000;"></div>
</td>
</tr>
<tr>
<td>255</td>
<td>
<div style="display: inline-block; vertical-align: sub; width: 255px; height: 1px; background-color: #000000;"></div>
</td>
</tr>
</tbody>
</table>
<p>A nice thing about the cat-typing example is that theres no difference between genotype and phenotype. The DNA data itself is a string of characters, and the expression of that data is that very string.</p>
<h3 id="step-2-selection">Step 2: Selection</h3>
<p>The second step of the genetic algorithm is to apply the Darwinian principle of <strong>selection</strong>.<em> </em>This involves evaluating the population and determining which members are “fit” to be selected as parents for the next generation. The process of selection can be divided into two steps.</p>
<ol>
<li><strong>Evaluate fitness.</strong></li>
<li><strong>Create a mating pool.</strong></li>
</ol>
<p>For the first of these steps, Ill need to design a <strong>fitness function</strong>, a function that produces a numeric score to describe the fitness of a given element of the population. This, of course, isnt how the real world works at all. Creatures arent given a score; rather, they simply reproduce or they dont reproduce. In the case of a traditional genetic algorithm, however, where the goal is to evolve an optimal solution to a problem, a mechanism to numerically evaluate any given possible solution is required.</p>
<p>Consider the current scenario, the typing cats. Again, for simplicity, Ill say the target phrase is <em>cat</em>. Assume three members of the population: <em>hut</em>, <em>car</em>, and <em>box</em>. <em>Car</em> is obviously the most fit, given that it has two correct characters in the correct positions, <em>hut</em> has only one, and <em>box</em> has zero. And there it is, a fitness function:</p>
<div data-type="equation">\text{fitness} = \text{the number of correct characters}</div>
<table>
<thead>
<tr>
<th>DNA</th>
<th>Fitness</th>
</tr>
</thead>
<tbody>
<tr>
<td>car</td>
<td>2</td>
</tr>
<tr>
<td>hut</td>
<td>1</td>
</tr>
<tr>
<td>box</td>
<td>0</td>
</tr>
</tbody>
</table>
<p>Ill eventually want to look at examples with more sophisticated fitness functions, but this is a good place to start.</p>
<p>Once the fitness has been calculated for all members of the population, the next part of the selection process is to choose which members are fit to become parents and place them in a mating pool. There are several different approaches for this step. For example, I could employ whats known as the <strong>elitist</strong> method and say, “Which two members of the population scored the highest? You two will make all the children for the next generation.” This is probably one of the easier methods to code, but it flies in the face of the principle of variation. If two members of the population (out of perhaps thousands) are the only ones available to reproduce, the next generation will have little variety, and this may stunt the evolutionary process.</p>
<p>I could instead make a mating pool out of a larger number of elements—for example, the top 50 percent of the population. This is another easy one to code, but it also wont produce optimal results. In this case, the highest-scoring elements would have the same chance of being selected as the ones toward the middle. In a population of 1,000 phrases, why should the phrase ranked 500th have the same chance of reproducing as the phrase ranked 1st? For that matter, why should phrase 500 have a solid shot of reproducing, while phrase 501 has no shot at all?</p>
<p>A better solution for the mating pool is to use a <strong>probabilistic</strong> method, which Ill call the “wheel of fortune” (also known as the “roulette wheel”). To illustrate this method, lets consider a scenario where theres a population of five elements, each with a fitness score.</p>
<table>
<thead>
<tr>
<th>Element</th>
<th>Fitness</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>3</td>
</tr>
<tr>
<td>B</td>
<td>4</td>
</tr>
<tr>
<td>C</td>
<td>0.5</td>
</tr>
<tr>
<td>D</td>
<td>1</td>
</tr>
<tr>
<td>E</td>
<td>1.5</td>
</tr>
</tbody>
</table>
<p>The first step is to <strong>normalize</strong> all the scores. Remember normalizing a vector? That involved taking a vector and standardizing its length, setting it to 1. Normalizing a set of fitness scores involves standardizing their range to between 0 and 1, as a percentage of total fitness. For that, first add up all the fitness scores:</p>
<div data-type="equation">\text{total fitness} = 3 + 4 + 0.5 + 1 + 1.5 = 10</div>
<p>Next, divide each score by the total fitness, resulting in the normalized fitness.</p>
<table>
<thead>
<tr>
<th>Element</th>
<th>Fitness</th>
<th>Normalized Fitness</th>
<th>Expressed as a Percentage</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>3</td>
<td>0.3</td>
<td>30%</td>
</tr>
<tr>
<td>B</td>
<td>4</td>
<td>0.4</td>
<td>40%</td>
</tr>
<tr>
<td>C</td>
<td>0.5</td>
<td>0.05</td>
<td>5%</td>
</tr>
<tr>
<td>D</td>
<td>1</td>
<td>0.1</td>
<td>10%</td>
</tr>
<tr>
<td>E</td>
<td>1.5</td>
<td>0.1</td>
<td>15%</td>
</tr>
</tbody>
</table>
<p>Now its time for the wheel of fortune, shown in Figure 9.2.</p>
<div class="half-width-right">
<figure>
<img src="images/09_ga/09_ga_3.png" alt="Figure 9.2: A “wheel of fortune” where each slice of the wheel is sized according to a fitness value">
<figcaption>Figure 9.2: A “wheel of fortune” where each slice of the wheel is sized according to a fitness value</figcaption>
</figure>
</div>
<p>Spin the wheel and youll notice that element B has the highest chance of being selected, followed by A, then E, then D, and finally C. This probability-based selection according to fitness is an excellent approach. It guarantees that the highest-scoring elements will be most likely to reproduce, while also not entirely eliminating any variation from the population. Unlike with the elitist method, even the lowest-scoring element (in this case, C) has at least some chance of passing its information down to the next generation. This is important because its quite possible (and often the case) that some low-scoring elements have tiny nuggets of genetic code that are truly useful and shouldnt be removed from the population. For example, in the case of evolving “to be or not to be,” we might have the following elements:</p>
<table>
<thead>
<tr>
<th>Element</th>
<th>DNA</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>to be or not to go</td>
</tr>
<tr>
<td>B</td>
<td>to be or not to pi</td>
</tr>
<tr>
<td>C</td>
<td>purrrrrrrrrrrrr be</td>
</tr>
</tbody>
</table>
<p>As you can see, elements A and B are clearly the most fit and would have the highest score. But neither contains the correct characters for the end of the phrase. Element C, even though it would receive a very low score, happens to have the genetic data for the end of the phrase. While I might want A and B to be picked to generate the majority of the next generation, I still want C to have a small chance to participate in the reproductive process too.</p>
<h3 id="step-3-reproduction">Step 3: Reproduction</h3>
<p>Now that Ive demonstrated a strategy for picking parents, the last step is to use <strong>reproduction</strong> to create the populations next generation, keeping in mind the Darwinian principle of heredity—that children inherit properties from their parents. Again, there are a number of different techniques that could be employed here. For example, one reasonable (and easy to program) strategy is <strong>cloning</strong>, meaning just one parent is picked and an exact copy of that parent is created as a child element. As with the elitist approach to selection, however, this runs counter to the idea of variation. Instead, the standard approach with genetic algorithms, however, is to pick two parents and create a child according to two steps:</p>
<ol>
<li><strong>Crossover.</strong></li>
<li><strong>Mutation.</strong></li>
</ol>
<p>The first step, <strong>crossover</strong>, involves creating a child out of the genetic code of two parents. In the case of the cat-typing example, say Ive picked the following two parent phrases from the mating pool, as outlined in the selection step (Im simplifying and using strings of length 6, instead of the 18 characters required for “to be or not to be”).</p>
<table>
<tbody>
<tr>
<td>Parent A</td>
<td>coding</td>
</tr>
<tr>
<td>Parent B</td>
<td>nature</td>
</tr>
</tbody>
</table>
<p>The task at hand is now to create a child phrase from these two. Perhaps the most obvious way (call it the “50/50 method”) would be to take the first three characters from A and the second three from B, as shown in Figure 9.3.</p>
<figure>
<img src="images/09_ga/09_ga_4.png" alt="Figure 9.3: A 50/50 crossover">
<figcaption>Figure 9.3: A 50/50 crossover</figcaption>
</figure>
<p>A variation of this technique is to pick a random midpoint. In other words, I dont always have to pick exactly half of the characters from each parent. I could also use a combination of 1 and 5, or 2 and 4. This is preferable to the 50/50 approach, since it increases the variety of possibilities for for the next generation (see Figure 9.4).</p>
<figure>
<img src="images/09_ga/09_ga_5.png" alt="Figure 9.4: Two examples of crossover from a random midpoint ">
<figcaption>Figure 9.4: Two examples of crossover from a random midpoint </figcaption>
</figure>
<p>Another possibility is to randomly select a parent for each character in the child string, as in Figure 9.5. You can think of this as flipping a coin six times: heads, take a character from parent A; tails, from parent B. This yields even more possible outcomes: “codurg,” “natine,” “notune,” “cadune,” and so on.</p>
<figure>
<img src="images/09_ga/09_ga_6.png" alt="Figure 9.5: Crossover with a “coin-flipping” approach ">
<figcaption>Figure 9.5: Crossover with a “coin-flipping” approach </figcaption>
</figure>
<p>This strategy wont significantly change the outcome from the random midpoint method; however, if the order of the genetic information plays some role in the fitness function, you may prefer one solution over the other. Other problems may benefit more from the randomness introduced by the coin-flipping approach.</p>
<p>Once the child DNA has been created via crossover, an extra, optional process can be applied before adding the child to the next generation: <strong>mutation</strong>. This second reproduction stage is unnecessary in some cases, but it exists to further uphold the Darwinian principle of variation. The initial population was created randomly, ensuring some variety of elements at the outset. However, this variation is limited by the size of the population, and the variation narrows over time by virtue of selection. Mutation introduces additional variety throughout the evolutionary process.</p>
<div class="half-width-right">
<figure>
<img src="images/09_ga/09_ga_7.png" alt="Figure 9.6: Mutating the child phrase">
<figcaption>Figure 9.6: Mutating the child phrase</figcaption>
</figure>
</div>
<p>Mutation is described in terms of a <em>rate</em>. A given genetic algorithm might have a mutation rate of 5 percent, or 1 percent, or 0.1 percent, for example. Say Ive arrived through crossover at the child phrase “catire.” If the mutation rate is 1 percent, this means that for each character in the phrase, theres a 1 percent chance that it will mutate before being “born” into the next generation. What does it mean for a character to mutate? In this case, mutation could be defined as picking a new random character. A 1 percent probability is fairly low, so most of the time mutation wont occur at all in a six-character string (about 94 percent of the time, in fact). However, when it does, the mutated character is replaced with a randomly generated one (see Figure 9.6).</p>
<p>As youll see in the coming examples, the mutation rate can greatly affect the behavior of the system. A very high mutation rate (such as, say, 80 percent) would negate the entire evolutionary process and leave you with something more akin to a brute force algorithm. If the majority of a childs genes are generated randomly, then you cant guarantee that the more “fit” genes occur with greater frequency with each successive generation.</p>
<p>Overall, the process of selection (picking two parents) and reproduction (crossover and mutation) is repeated <span data-type="equation">N</span> times until theres a new population of <span data-type="equation">N</span> child elements.</p>
<h3 id="step-4-repeat">Step 4: Repeat!</h3>
<p>At this point, the new population of children becomes the current population. Then the process returns to Step 2 and starts all over again, evaluating the fitness of each element, selecting parents, and producing another generation of children. Hopefully, as the algorithm cycles through more and more generations, the system evolves closer and closer to the desired solution.</p>
<h2 id="coding-the-genetic-algorithm">Coding the Genetic Algorithm</h2>
<p>Now that Ive described all the steps of the genetic algorithm, its time to translate these steps into code. Before I dive into the details of the implementation, lets think big picture about how the different steps fit into the standard structure of a p5.js sketch. What goes into <code>setup()</code>, and what goes into <code>draw()</code>?</p>
<p><code><strong>setup()</strong></code></p>
<p>Step 1: <strong>Initialization</strong>. Create a starting population of <span data-type="equation">N</span> elements, each with randomly generated DNA.</p>
<p><code><strong>draw()</strong></code></p>
<p>Step 2: <strong>Selection</strong>. Evaluate the fitness of each element of the population and build a mating pool.</p>
<p>Step 3: <strong>Reproduction</strong>. Repeat <span data-type="equation">N</span> times:</p>
<ul>
<li>Pick two parents with probability according to relative fitness.        </li>
<li><strong>Crossover</strong>. Create a “child” by combining the DNA of these two parents.</li>
<li><strong>Mutation</strong>. Modify the childs DNA based on a given probability.</li>
<li>Add the new child to a new population.</li>
</ul>
<p>Step 4. Replace the old population with the new population and return to step 2.</p>
<p>With this plan in place, I can start writing the code.</p>
<h3 id="step-1-initialization">Step 1: Initialization</h3>
<p>If Im going to create a population, I need a data structure to store a list of elements in the population.</p>
<pre class="codesplit" data-code-language="javascript">// An array for the population of elements
let population = [];</pre>
<p>Choosing an array to represent a list is straightforward, but the question remains: an array of what? An object is an excellent choice for storing the genetic information, as it can hold multiple properties and methods. These “genetic” objects will be structured according to a class that Ill call <code>DNA</code>.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
}</pre>
<p>What should go in the <code>DNA</code> class? For a typing cat, its DNA would be the random phrase it types, a string of characters. However, using an array of characters (rather than a string object) provides a more generic template that can extend easily to other data types. For example, the DNA of a creature in a physics system could be an array of vectors—or for an image, an array of numbers (RGB pixel values). Any set of properties can be listed in an array, and even though a string is convenient for this particular scenario, an array will serve as a better foundation for future evolutionary examples.</p>
<p>The genetic algorithm specifies that I create a population of <span data-type="equation">N</span> elements, each with <em>randomly generated genes</em>. The DNA constructor therefore includes a loop to fill in each element of the <code>genes</code> array.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor(length){
//{!1} The individual "genes" are stored in an array.
this.genes = [];
// There are "length" genes.
for (let i = 0; i &#x3C; length; i++) {
// Each gene is a random character.
this.genes[i] = randomCharacter();
}
}
}</pre>
<p>In order to randomly generate a character, Ill write a helper function called <code>randomCharacter()</code> for each individual gene.</p>
<pre class="codesplit" data-code-language="javascript">// Return a random character (letter, number, symbol, space, etc).
function randomCharacter() {
let c = floor(random(32, 127));
return String.fromCharCode(c);
}</pre>
<p>The random numbers picked correspond to a specific character according to a standard known as <strong>ASCII</strong> (American Standard Code for Information Interchange), and <code>String.fromCharCode()</code> is a native JavaScript method that converts a number into its corresponding character based on that standard. The range Ive specified encompasses upper- and lowercase letters, numbers, punctuation marks, and special characters. An alternative approach could involve using the Unicode standard, which includes emojis and characters from various world languages, providing a more extensive range of characters for a different target string.</p>
<p>Now that I have the constructor, I can return to <code>setup()</code> and initialize each <code>DNA</code> object in the <code>population</code> array.</p>
<pre class="codesplit" data-code-language="javascript">let population = [];
function setup() {
for (let i = 0; i &#x3C; population.length; i++) {
//{!1} Initialize each element of the population. 18 is hardcoded for now as the length of the genes array.
population[i] = new DNA(18);
}
}</pre>
<p>The <code>DNA</code> class is not at all complete. I need to give it methods that perform all the other tasks in the genetic algorithm. Ill do that as I walk through steps 2 and 3.</p>
<h3 id="step-2-selection-1">Step 2: Selection</h3>
<p>Step 2 reads, <em>“Evaluate the fitness of each element of the population and build a mating pool.”</em> Ill start with the first part, evaluating each objects fitness. Earlier I stated that one possible fitness function for the typed phrases is the total number of correct characters. Now Ill revise this fitness function a little bit and state it as the <em>percentage</em> of correct characters—that is, the number of correct characters divided by the total number of characters.</p>
<div data-type="equation">\text{fitness} = \frac{\text{correct characters}}{\text{total characters}}</div>
<p>Where should I calculate the fitness? Since the <code>DNA</code> class contains the genetic information (the phrase I will test against the target phrase), I can write a method inside the <code>DNA</code> class itself to score its own fitness. Lets assume a target phrase:</p>
<pre class="codesplit" data-code-language="javascript">let target = "to be or not to be";</pre>
<p>I can now compare each “gene” against the corresponding character in the target phrase, incrementing a counter each time I find a correct character in the correct position. For example, a <code>t</code> is found in several places in <code>target</code>, but it only increases the fitness if it is in the <code>genes</code> array at the correct corresponding index.</p>
<p></p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor(length) {
this.genes = [];
//{!1} Adding a variable to track fitness.
this.fitness = 0;
for (let i = 0; i &#x3C; length; i++) {
this.genes[i] = randomCharacter();
}
}
// Compute fitness as % of "correct" characters.
calculateFitness(target) {
let score = 0;
for (let i = 0; i &#x3C; this.genes.length; i++) {
if (this.genes[i] == target.charAt(i)) {
score++;
}
}
this.fitness = score / target.length;
}
}</pre>
<p>Since fitness is calculated for each subsequent generation, the very first step Ill take inside the <code>draw()</code> loop is to call the fitness function for each member of the population.</p>
<pre class="codesplit" data-code-language="javascript">function draw() {
for (let phrase of population) {
phrase.calculateFitness(target);
}
}</pre>
<p>Once the fitness scores have been computed, the next step is to build the “mating pool” for the reproduction process. The mating pool is a data structure from which two parents are repeatedly selected. Recalling the description of the selection process, the goal is to pick parents with probabilities calculated according to fitness. In other words, the members of the population with the highest fitness scores should be most likely to be selected; those with the lowest scores, the least likely.</p>
<p>In Chapter 0, I covered the basics of probability and generating a custom distribution of random numbers. Im going to use the same techniques here to assign a probability to each member of the population, picking parents by spinning the “wheel of fortune.” Revisiting Figure 9.2 again, your mind might immediately go back to Chapter 3 and contemplate coding a simulation of an actual spinning wheel. As fun as this might be (and you should make one!), its quite unnecessary.</p>
<div class="half-width-right">
<figure>
<img src="images/09_ga/09_ga_8.png" alt="Figure 9.7: A bucket full of letters A, B, C, D, and E. The higher the fitness, the more instances of the letter in the bucket.">
<figcaption>Figure 9.7: A bucket full of letters A, B, C, D, and E. The higher the fitness, the more instances of the letter in the bucket.</figcaption>
</figure>
</div>
<p>One solution that could work here is to pick from the five options depicted in Figure 9.2 (ABCDE) according to their probabilities by filling an array with multiple instances of each parent. In other words, imagine you have a bucket of wooden letters, as in Figure 9.7. Based on the earlier probabilities, it should contain 30 As, 40 Bs, 5 Cs, 10 Ds, and 15 Es. If you were to pick a random letter out of that bucket, theres a 30 percent chance youll get an A, a 5 percent chance youll get a C, and so on.</p>
<p>For the genetic algorithm code, that bucket could be an array, and each wooden letter a potential parent <code>DNA</code> object. The mating pool is therefore created by adding each parent to the array a certain number of times, scaled according to that parents fitness score.</p>
<pre class="codesplit" data-code-language="javascript"> //{!1} Start with an empty mating pool.
let matingPool = [];
for (let phrase of population) {
//{!1} n is equal to fitness times 100.
// 100 is an arbitrary way to scale the % fitness to a larger integer value.
let n = floor(phrase.fitness * 100);
for (let j = 0; j &#x3C; n; j++) {
//{!1} Add each member of the population to the mating pool n times.
matingPool.push(phrase);
}
}</pre>
<p>With the mating pool ready to go, its time to select two parents! Its somewhat of an arbitrary decision to pick two parents for each child. It certainly mirrors human reproduction and is the standard means in the textbook genetic algorithm, but in terms of creative applications, there really arent restrictions here. You could choose only one parent for “cloning,” or devise a reproduction methodology for picking three or four parents from which to generate child DNA. For the demonstration here, Ill stick to two parents and call them <code>parentA</code> and <code>parentB</code>.</p>
<p>First I need two random indices into the mating pool—random numbers between 0 and the size of the array.</p>
<pre class="codesplit" data-code-language="javascript"> let aIndex = floor(random(matingPool.length));
let bIndex = floor(random(matingPool.length));</pre>
<p>I can then use the indices to retrieve a <code>DNA</code> instance from the <code>matingPool</code> array.</p>
<pre class="codesplit" data-code-language="javascript"> let parentA = matingPool[aIndex];
let parentB = matingPool[bIndex];</pre>
<p>This method of building a mating pool and choosing parents from it works, but it isnt the only way to perform selection. There are other, more memory-efficient techniques that dont require an additional array full of multiple references to each element. For example, think back to the discussion of non-uniform distributions of random numbers in Chapter 0. There, I implemented the “accept-reject” method. If applied here, the approach would be to randomly pick an element from the original <code>population</code> array, and then pick a second, “qualifying” random number to check against the elements fitness value. If the fitness is less than the qualifying number, start again and pick a new element. Keep going until two parents are deemed fit enough.</p>
<p>Theres also yet another excellent alternative worth exploring that similarly capitalizes on the principle of fitness-proportionate selection. To understand how it works, imagine a relay race where each member of the population runs a given distance tied to its fitness. The higher the fitness, the farther they run. Lets also assume that the fitness values have been normalized to all add up to 1 (just like with the “wheel of fortune”). The first step is to pick a “starting line”<em></em>a random distance from the finish. This distance is a random number between 0 and 1. (Youll see in a moment that the “finish line”<em> </em>is assumed to be at 0.)</p>
<pre class="codesplit" data-code-language="javascript">let start = random(1);</pre>
<p>Then the relay race begins at the starting line with first member of the population.</p>
<pre class="codesplit" data-code-language="javascript">let index = 0;</pre>
<p>The runner travels a distance defined by its normalized fitness score, then hands the baton to the next runner.</p>
<pre class="codesplit" data-code-language="javascript">
while (start > 0) {
// Move a distance according to fitness.
start = start - population[index].fitness;
// Pass the baton to the next element.
index++;
}</pre>
<p>The steps are repeated over and over again in a <code>while</code> loop until the race ends (<code>start</code> is less than or equal to <code>0</code>, the “finish line”). The runner that crosses the finish threshold is selected as a parent.</p>
<p>Here that is all together in a function that returns the selected element.</p>
<pre class="codesplit" data-code-language="javascript">function weightedSelection() {
// Start with the first element.
let index = 0;
// Pick a starting point.
let start = random(1);
// At the finish line?
while (start > 0) {
// Move a distance according to fitness.
start = start - population[index].fitness;
// Pass the baton to the next element.
index++;
}
// Undo moving to the next element since the finish has been reached.
index--;
return population[index];
}</pre>
<p>This works well for selection because each and every member has a shot at crossing the finish line (the elements fitness scores all add up to 1), but those who run longer distances (that is, those with higher fitness scores) have a better chance of making it there. However, while this method is more memory efficienct, it can be more <em>computationally </em>demanding, especially for large populations, as it requires iterating through the population for each selection. By contrast, the original <code>matingPool</code> array method only needs a single random lookup into the array per parent.</p>
<p>Depending on the specific requirements and constraints of your application of genetic algorithms, one approach might prove more suitable than the other. Ill alternate between them in the examples outlined in this chapter.</p>
<div data-type="exercise">
<h3 id="exercise-92">Exercise 9.2</h3>
<p>Revisit the accept-reject algorithm from Chapter 0 and rewrite the <code>weightedSelection()</code> function to use accept-reject instead. Like the relay race method, this technique can also end up being computationally intensive, since several potential parents my be rejected as unfit before one is finally chosen.</p>
</div>
<div data-type="exercise">
<h3 id="exercise-93">Exercise 9.3</h3>
<p>In some cases, the wheel of fortune algorithm will have an extraordinarily high preference for some elements over others. Take the following probabilities:</p>
<table>
<thead>
<tr>
<th>Element</th>
<th>Probability</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>98%</td>
</tr>
<tr>
<td>B</td>
<td>1%</td>
</tr>
<tr>
<td>C</td>
<td>1%</td>
</tr>
</tbody>
</table>
<p>This is sometimes undesirable given how it will decrease the amount of variety in this system. A solution to this problem is to replace the calculated fitness scores with the ordinals of scoring (meaning their rank).</p>
<table>
<thead>
<tr>
<th>Element</th>
<th>Rank</th>
<th>Probability</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>1</td>
<td>50% (1/2)</td>
</tr>
<tr>
<td>B</td>
<td>2</td>
<td>33% (1/3)</td>
</tr>
<tr>
<td>C</td>
<td>3</td>
<td>17% (1/6)</td>
</tr>
</tbody>
</table>
<p>How can you implement this approach? Hint: you dont need to modify the selection algorithm itself. Instead, your task is to calculate the probabilities from the rank rather than the raw fitness score.</p>
</div>
<p>For any of these algorithms, its possible that the same parent could be picked twice for a given child. If I wanted, I could enhance the algorithm to ensure that this isnt possible. This would likely have very little impact on the end result, but it may be worth exploring as an exercise.</p>
<div data-type="exercise">
<h3 id="exercise-94">Exercise 9.4</h3>
<p>Pick any of the weighted selection algorithms and adapt the algorithm to guarantee that two unique “parents” are picked.</p>
</div>
<h3 id="step-3-reproduction-crossover-and-mutation">Step 3: Reproduction (Crossover and Mutation)</h3>
<p>Once I have the two parents, the next step is to perform a <strong>crossover</strong> operation to generate child DNA, followed by <strong>mutation</strong>.</p>
<pre class="codesplit" data-code-language="javascript">// A function for crossover
let child = parentA.crossover(parentB);
// A function for mutation
child.mutate();</pre>
<p>Of course, the <code>crossover()</code> and <code>mutate()</code> methods dont magically exist in the <code>DNA</code> class; I have to write them. The way Ive called <code>crossover()</code> indicates that it should receive an instance of <code>DNA</code> as an argument (<code>parentB</code>) and return a new instance of <code>DNA</code>, the <code>child</code>.</p>
<pre class="codesplit" data-code-language="javascript">crossover(partner) {
// The child is a new instance of DNA.
// (Note that the genes are generated randomly in the DNA constructor,
// but the crossover method will override the array.)
let child = new DNA(this.genes.length);
//{!1} Pick a random “midpoint” in the genes array.
let midpoint = floor(random(this.genes.length));
for (let i = 0; i &#x3C; this.genes.length; i++) {
// Before the midpoint, takes genes from this DNA.
if (i &#x3C; midpoint) {
child.genes[i] = this.genes[i];
// After the midpoint, take from the partner DNA.
} else {
child.genes[i] = partner.genes[i];
}
}
return child;
}</pre>
<p>This implementation uses the “random midpoint” method of crossover, in which the first section of genes is taken from parent A and the second from parent B.</p>
<div data-type="exercise">
<h3 id="exercise-95">Exercise 9.5</h3>
<p>Rewrite the crossover function to use the “coin flipping” method instead, in which each gene has a 50 percent chance of coming from parent A and a 50 percent chance of coming from parent B.</p>
</div>
<p>The <code>mutate()</code> method is even simpler to write than <code>crossover()</code>. All I need to do is loop through the array of genes and randomly pick a new character according to the defined mutation rate. With a mutation rate of 1 percent, for example, a new character would only be generated 1 out of 100 times.</p>
<pre class="codesplit" data-code-language="javascript">let mutationRate = 0.01;
if (random(1) &#x3C; mutationRate) {
// Any code here would be executed 1% of the time.
}</pre>
<p>The entire method therefore reads:</p>
<pre class="codesplit" data-code-language="javascript">mutate(mutationRate) {
//{!1} Look at each gene in the array.
for (let i = 0; i &#x3C; this.genes.length; i++) {
//{!1} Check a random number against the mutation rate.
if (random(1) &#x3C; mutationRate) {
//{!1} Mutation means choosing a new random character.
this.genes[i] = randomCharacter();
}
}
}</pre>
<p>Once again, Im able to use the <code>randomCharacter()</code> helper function to simplify the mutation process.</p>
<h3 id="putting-it-all-together">Putting It All Together</h3>
<p>Ive now walked through the steps of the genetic algorithm twice—once describing the algorithm in narrative form, and another time with code snippets implementing each of the steps. Now Im ready to put it all together and show you the complete code alongside the basic steps of the algorithm.</p>
<div data-type="example">
<h3 id="example-91-genetic-algorithm-for-evolving-shakespeare">Example 9.1: Genetic Algorithm for Evolving Shakespeare</h3>
<figure>
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/q4F192JCV" data-example-path="examples/09_ga/9_1_ga_shakespeare"><img src="examples/09_ga/9_1_ga_shakespeare/screenshot.png"></div>
<figcaption></figcaption>
</figure>
</div>
<pre class="codesplit" data-code-language="javascript">
// Mutation rate
let mutationRate = 0.01;
// Population size
let populationSize = 150;
// Population array
let population = [];
// Target phrase
let target = "to be or not to be";
function setup() {
createCanvas(640, 360);
// <strong>Step 1: Initialize Population</strong><span class="blank"><strong><em>
</em></strong></span> for (let i = 0; i &#x3C; populationSize; i++) {
population[i] = new DNA(target.length);
}
}
function draw() {
//{!0} <strong>Step 2: Selection</strong>
//{!3} Step 2a: Calculate fitness.
for (let phrase of population) {
phrase.calculateFitness(target);
}
// Step 2b: Build mating pool.
let matingPool = [];
for (let phrase of population) {
//{!4} Add each member n times according to its fitness score.
let n = floor(phrase.fitness * 100);
for (let j = 0; j &#x3C; n; j++) {
matingPool.push(phrase);
}
}
// <strong>Step 3: Reproduction</strong>
for (let i = 0; i &#x3C; population.length; i++) {
let aIndex = floor(random(matingPool.length));
let bIndex = floor(random(matingPool.length));
let partnerA = matingPool[aIndex];
let partnerB = matingPool[bIndex];
// Step 3a: Crossover
let child = partnerA.crossover(partnerB);
// Step 3b: Mutation
child.mutate(mutationRate);
//{!1} Note that we are overwriting the population with the new
// children. When draw() loops, we will perform all the same
// steps with the new population of children.
population[i] = child;
}
// <strong>Step 4: Repeat! (go back to the beginning of draw)</strong>
}</pre>
<p>The <em>sketch.js</em> file precisely mirrors the steps of the genetic algorithm. However, most of the functionality called upon is encapsulated in the <code>DNA</code> class itself.</p>
<pre class="codesplit" data-code-language="javascript">
class DNA {
//{.code-wide} Constructor (makes a random DNA)
constructor(length) {
this.genes = [];
this.fitness = 0;
for (let i = 0; i &#x3C; length; i++) {
this.genes[i] = randomCharacter();
}
}
//{.code-wide} Converts array to String—PHENOTYPE.
getPhrase() {
return this.genes.join("");
}
//{.code-wide} Calculate fitness.
calculateFitness(target) {
let score = 0;
for (let i = 0; i &#x3C; this.genes.length; i++) {
if (this.genes[i] == target.charAt(i)) {
score++;
}
}
this.fitness = score / target.length;
}
//{.code-wide} Crossover
crossover(partner) {
let child = new DNA(this.genes.length);
let midpoint = floor(random(this.genes.length));
for (let i = 0; i &#x3C; this.genes.length; i++) {
if (i &#x3C; midpoint) {
child.genes[i] = this.genes[i];
} else {
child.genes[i] = partner.genes[i];
}
}
return child;
}
//{.code-wide} Mutation
mutate(mutationRate) {
for (let i = 0; i &#x3C; this.genes.length; i++) {
if (random(1) &#x3C; mutationRate) {
this.genes[i] = randomCharacter();
}
}
}
}
// Return a random character (letter, number, symbol, space, etc)
function randomCharacter() {
let c = floor(random(32, 127));
return String.fromCharCode(c);
}</pre>
<p>In Example 9.1, you might notice that new child elements are directly added to the <code>population</code> array. This approach is possible because I have a separate mating pool array that contains references to the original parent elements. However, if I were to instead use the “relay race” <code>weightedSelection()</code> function, I'd need to create a temporary array for the new population. This temporary array would hold the child elements and replace the original population array only after the reproduction step is completed. Youll see this implemented in Example 9.2.</p>
<div data-type="exercise">
<h3 id="exercise-96">Exercise 9.6</h3>
<p>Add features to Example 9.1 to report more information about the progress of the genetic algorithm itself. For example, show the phrase closest to the target in each generation, as well as a report on the number of generations, the average fitness, and so on. Stop the genetic algorithm once it has solved the phrase. Consider writing a <code>Population</code> class to manage the GA, instead of including all the code in <code>draw()</code>.</p>
<figure>
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/ZwT5cPix2" data-example-path="examples/09_ga/exercise_9_6_annotated_ga_shakespeare"><img src="examples/09_ga/exercise_9_6_annotated_ga_shakespeare/screenshot.png"></div>
<figcaption></figcaption>
</figure>
</div>
<div data-type="exercise">
<h3 id="exercise-97">Exercise 9.7</h3>
<p>Explore the idea of a “dynamic” mutation rate. For example, try calculating a mutation rate that inversely correlates with the average fitness of the parent phrases, so that higher fitness results in fewer mutations. Does this change affect the behavior of the overall system and how quickly the target phrase is found?</p>
</div>
<p></p>
<h2 id="customizing-genetic-algorithms">Customizing Genetic Algorithms</h2>
<p>The nice thing about using genetic algorithms in a project is that example code can easily be ported from application to application. The core mechanics of selection and reproduction dont need to change. There are, however, three key components to genetic algorithms that you, the creative coder, will have to customize for each use. This is crucial to moving beyond trivial demonstrations of evolutionary simulations (as in the Shakespeare example) to creative uses in projects that you make in p5.js and other programming environments.</p>
<h3 id="key-1-the-global-variables">Key #1: The Global Variables</h3>
<p>There arent a lot of variables to the genetic algorithm itself. In fact, if you look at the previous examples code, youll see only two global variables (not including the arrays to store the population and mating pool).</p>
<pre class="codesplit" data-code-language="javascript">let mutationRate = 0.01;
let populationSize = 150;</pre>
<p>These two variables can greatly affect the behavior of the system, and its not such a good idea to arbitrarily assign them values (though tweaking them through trial and error is a perfectly reasonable way to arrive at optimal values).</p>
<p>I chose the values for the Shakespeare demonstration to virtually guarantee that the genetic algorithm would solve for the phrase, but not too quickly (approximately 1,000 generations on average), so as to demonstrate the process over a reasonable period of time. A much larger population, however, would yield faster results (if the goal were algorithmic efficiency rather than demonstration). Heres a table of some results.</p>
<table>
<thead>
<tr>
<th>Population Size</th>
<th>Mutation Rate</th>
<th>Number of Generations Until Phrase Solved</th>
<th>Total Time (in Seconds) Until Phrase Solved</th>
</tr>
</thead>
<tbody>
<tr>
<td>150</td>
<td>1%</td>
<td>1,089</td>
<td>18.8</td>
</tr>
<tr>
<td>300</td>
<td>1%</td>
<td>448</td>
<td>8.2</td>
</tr>
<tr>
<td>1,000</td>
<td>1%</td>
<td>71</td>
<td>1.8</td>
</tr>
<tr>
<td>50,000</td>
<td>1%</td>
<td>27</td>
<td>4.3</td>
</tr>
</tbody>
</table>
<p>Notice how increasing the population size drastically reduces the number of generations needed to solve for the phrase. However, it doesnt necessarily reduce the amount of time. Once the population balloons to 50,000 elements, the sketch begins to run slowly, given the amount of time required to process fitness and build a mating pool out of so many elements. (There are, of course, optimizations that could be made should you require such a large population.)</p>
<p>In addition to the population size, the mutation rate can greatly affect performance.</p>
<table>
<thead>
<tr>
<th>Population Size</th>
<th>Mutation Rate</th>
<th>Number of Generations Until Phrase Solved</th>
<th>Total Time (in Seconds) Until Phrase Solved</th>
</tr>
</thead>
<tbody>
<tr>
<td>1,000</td>
<td>0%</td>
<td>37 or never?</td>
<td>1.2 or never?</td>
</tr>
<tr>
<td>1,000</td>
<td>1%</td>
<td>71</td>
<td>1.8</td>
</tr>
<tr>
<td>1,000</td>
<td>2%</td>
<td>60</td>
<td>1.6</td>
</tr>
<tr>
<td>1,000</td>
<td>10%</td>
<td>never?</td>
<td>never?</td>
</tr>
</tbody>
</table>
<p>Without any mutation at all (0 percent), you just have to get lucky. If all the correct characters are present somewhere in an element of the initial population, youll evolve the phrase very quickly. If not, theres no way for the sketch to ever reach the exact phrase. Run it a few times and youll see both instances. In addition, once the mutation rate gets high enough (10 percent, for example), theres so much randomness involved (1 out of every 10 letters is random in each new child) that the simulation is pretty much back to a random typing cat. In theory, it will eventually solve the phrase, but you may be waiting much, much longer than is reasonable.</p>
<h3 id="key-2-the-fitness-function">Key #2: The Fitness Function</h3>
<p>Playing around with the mutation rate or population size is pretty easy and involves little more than typing numbers in your sketch. The real hard work of a developing a genetic algorithm is in writing the fitness function. If you cant define your problems goals and evaluate numerically how well those goals have been achieved, then you wont have successful evolution in your simulation.</p>
<p>Before I move on to other scenarios exploring more sophisticated fitness functions, I want to look at flaws in my Shakespearean fitness function. Consider solving for a phrase that isnt 18 characters long, but 1,000. And take two elements of the population, one with 800 characters correct and one with 801. Here are their fitness scores:</p>
<table>
<thead>
<tr>
<th>Phrase</th>
<th>Characters Correct</th>
<th>Fitness</th>
</tr>
</thead>
<tbody>
<tr>
<td>A</td>
<td>800</td>
<td>80.0%</td>
</tr>
<tr>
<td>B</td>
<td>801</td>
<td>80.1%</td>
</tr>
</tbody>
</table>
<p>There are a couple of problems here. First, Im adding elements to the mating pool <span data-type="equation">N</span> times, where <span data-type="equation">N</span> equals fitness multiplied by 100. But objects can only be added to an array a whole number of times, so A and B will both be added 80 times, giving them an equal probability of being selected. Even with an improved solution that takes floating point probabilities into account, 80.1 percent is only a teeny tiny bit higher than 80 percent. But getting 801 characters right is a whole lot better than 800 in the evolutionary scenario. I really want to make that additional character count. I want the fitness score for 801 characters to be <em>substantially</em> better than the score for 800.</p>
<p>To put it another way, Figure 9.8 shows graphs of two possible fitness functions.</p>
<figure>
<img src="images/09_ga/09_ga_9.png" alt="Figure 9.8: On the left, a fitness graph of y=x, on the right y = x^2">
<figcaption>Figure 9.8: On the left, a fitness graph of <span data-type="equation">y=x</span>, on the right <span data-type="equation">y = x^2</span></figcaption>
</figure>
<p>On the left is a linear graph; as the number of characters goes up, so does the fitness score. By contrast, in the graph on the right, as the number of characters goes up, the fitness score goes <em>way</em> up. That is, the fitness increases at an accelerating rate as the number of correct characters increases.</p>
<p>I can achieve this second type of result in a number of different ways. For example, I could say:</p>
<div data-type="equation">\text{fitness} = \text{(correct characters)}^2</div>
<p>Here, the fitness scores increase <strong>quadratically</strong>, meaning proportional to the square of the number of correct characters. Say I have two members of the population, one with five correct characters and one with six. The number 6 is a 20 percent increase over the number 5. However, by squaring the correct characters, the fitness value will go from 25 to 36, a 44 percent increase.</p>
<table>
<thead>
<tr>
<th>Correct Characters</th>
<th>Fitness</th>
</tr>
</thead>
<tbody>
<tr>
<td>5</td>
<td>25</td>
</tr>
<tr>
<td>6</td>
<td>36</td>
</tr>
</tbody>
</table>
<p>Heres another formula:</p>
<div data-type="equation">\text{fitness} = 2^\text{correct characters}</div>
<p>And heres how that formula plays out as the number of correct characters increases:</p>
<table>
<thead>
<tr>
<th>Correct characters</th>
<th>Fitness</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>2</td>
<td>4</td>
</tr>
<tr>
<td>3</td>
<td>8</td>
</tr>
<tr>
<td>4</td>
<td>16</td>
</tr>
</tbody>
</table>
<p>Here, the fitness scores increase <strong>exponentially</strong>, doubling with each additional correct character.</p>
<div data-type="exercise">
<h3 id="exercise-98">Exercise 9.8</h3>
<p>Rewrite the fitness function to increase quadratically or exponentially according to the number of correct characters. Note that youll likely have to normalize the fitness values to a range between 0 and 1 so they can be added to the mating pool a reasonable number of times, or use a different “weighted selection” method.</p>
</div>
<p>While this rather specific discussion of exponential vs. linear equations is an important detail in the design of a good fitness function, I dont want you to miss the more important point here: <em>Design your own fitness function!</em> I seriously doubt that any project you undertake in p5.js with genetic algorithms will actually involve counting the correct number of characters in a string. In the context of this book, its more likely youll be looking to evolve a creature thats part of a physics system. Perhaps youre looking to optimize the weights of steering behaviors so a creature can best escape a predator or avoid an obstacle or make it through a maze. You have to ask yourself what youre hoping to evaluate.</p>
<p>Consider a racing simulation in which a vehicle is evolving a design optimized for speed.</p>
<div data-type="equation">\text{fitness} = \text{total number of frames required for vehicle to reach race finish}</div>
<p>How about a mouse thats evolving the optimal way to find a piece of cheese?</p>
<div data-type="equation">\text{fitness} = \text{mouse distance to cheese}</div>
<p>The design of computer-controlled players in a game is also a common scenario. Say youre programming a soccer game in which the user is the goalie. The rest of the players are controlled by your program and have a set of parameters that determine how they kick a ball toward the goal. What would the fitness score for any given player be?</p>
<div data-type="equation">\text{fitness} = \text{total goals scored}</div>
<p>This, of course, is a simplistic take on the game of soccer, but it illustrates the point. The more goals a player scores, the higher its fitness, and the more likely its genetic information will appear in the next game. Even with a fitness function as simple as the one described here, this scenario is demonstrating something very powerful—the adaptability of a system. If the players continue to evolve from game to game to game, when a new <em>human</em> user enters the game with a completely different strategy, the system will quickly discover that the fitness scores are going down and evolve a new optimal strategy. It will adapt. (Dont worry, theres very little danger in this resulting in sentient, soccer-playing robots that will enslave all humans.)</p>
<p>In the end, if you dont have a fitness function that effectively evaluates the performance of the individual elements of your population, you wont have any evolution. And the fitness function from one example will likely not apply to a totally different project. You have to design a function, sometimes from scratch, that works for your particular project. And where do you do this? All you have to edit are those few lines of code inside the method that computes the <code>fitness</code> variable.</p>
<pre class="codesplit" data-code-language="javascript">calculateFitness() {
????????????
????????????
this.fitness = ??????????
}</pre>
<p>Filling in those question marks is the part where you get to shine!</p>
<h3 id="key-3-the-genotype-and-phenotype">Key #3: The Genotype and Phenotype</h3>
<p>The final key to designing your own genetic algorithm relates to how you choose to encode the properties of your system. What are you trying to express, and how can you translate that expression into a bunch of numbers? What is the genotype and phenotype?</p>
<p>I started with the Shakespeare example because of how easy it was to design both the genotype (an array of characters) and its expression, the phenotype (the string displayed on the canvas). It isnt always this easy, however. For example, when talking about the fitness function for a soccer game, I happily assumed the existence of computer-controlled kickers that each have a “set of parameters that determine how they kick a ball towards the goal,” but actually determining what those parameters are and how you choose to encode them would require some thought and creativity. And of course, theres no one correct answer: how you design the system is up to you.</p>
<p>The good news—and I hinted at this earlier in the chapter—is that youve been translating genotypes (data) into phenotypes (expression) all along. Anytime you write a class in p5.js, you make a whole bunch of variables.</p>
<pre class="codesplit" data-code-language="javascript">class Vehicle {
constructor() {
this.maxspeed = ????;
this.maxforce = ????;
this.size = ????;
this.separationWeight = ????;
/* and more... */
}
</pre>
<p>All you need to do to evolve those variables is to turn them into an array, so that the array can be used with all of the methods—<code>crossover()</code>, <code>mutate()</code>, and the like—found in the <code>DNA</code> class. One common solution is to use an array of floating point numbers between 0 and 1.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor(length) {
// An empty array
this.genes = [];
for (let i = 0; i &#x3C; length; i++) {
// Always pick a number between 0 and 1.
this.genes[i] = random(1);
}
}
}</pre>
<p>Notice how Ive now put the raw genetic data (genotype) and its expression (phenotype) into two separate classes. The <code>DNA</code> class is the genotype—its just a bunch of numbers. The <code>Vehicle</code> class is the phenotype—its an expression of how to turn those numbers into animated, visual behaviors. The two can be linked by including a <code>DNA</code> instance inside the <code>Vehicle</code> class itself.</p>
<pre class="codesplit" data-code-language="javascript">class Vehicle {
constructor() {
//{!1} A DNA object embedded into the Vehicle class
this.dna = new DNA(4);
//{!4} Using the genes to set variables
this.maxspeed = dna.genes[0];
this.maxforce = dna.genes[1];
this.size = dna.genes[2];
this.separationWeight = dna.genes[3];
/* and more... */
}</pre>
<p>Of course, you most likely dont want all your variables to have a range between 0 and 1. But rather than try to remember how to adjust those ranges in the <code>DNA</code> class itself, its easier to pull the original genetic information from the <code>DNA</code> object and then use p5.jss <code>map()</code> function to change the range as needed for your phenotype. For example, if you want a <code>size</code> variable between 10 and 72, you would say:</p>
<pre class="codesplit" data-code-language="javascript"> this.size = map(this.dna.genes[2], 0, 1, 10, 72);</pre>
<p>In other cases, you may want to design a genotype thats an array of objects. Consider the design of a rocket with a series of “thruster” engines. You could consider each thruster to be a vector that describes its direction and relative strength.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor(length) {
// The genotype is an array of vectors.
this.genes = [];
for (let i = 0; i &#x3C; length; i++) {
//{!1} A PVector pointing in a random direction
this.genes[i] = p5.Vector.random2D();
//{!1} And scaled randomly
this.genes[i].mult(random(10));
}
}
}</pre>
<p>The phenotype would be a <code>Rocket</code> class that participates in a physics system.</p>
<pre class="codesplit" data-code-language="javascript">class Rocket {
constructor(){
this.dna = ????;
/* and more... */
}
} </pre>
<p>Whats great about dividing the genotype and phenotype into separate classes (<code>DNA</code> and <code>Rocket</code>, for example) is that when it comes time to build all of the code, youll notice that the <code>DNA</code> class I developed earlier remains intact. The only thing that changes is the kind of data stored in the array (numbers, vectors, and so on) and the expression of that data in the phenotype class.</p>
<p>In the next section, I'll follow this idea a bit further and walk through the necessary steps to implement an example that involves moving bodies and an array of vectors as DNA.</p>
<h2 id="evolving-forces-smart-rockets">Evolving Forces: Smart Rockets</h2>
<p>I mentioned rockets for a specific reason: in 2009, Jer Thorp released a genetic algorithms example on his blog entitled “Smart Rockets.” Thorp pointed out that NASA uses evolutionary computing techniques to solve all sorts of problems, from satellite antenna design to rocket firing patterns. This inspired him to create a Flash demonstration of evolving rockets.</p>
<p>Heres the scenario: a population of rockets launches from the bottom of the screen with the goal of hitting a target at the top of the screen. There are obstacles blocking a straight-line path to the target (see Figure 9.9).</p>
<figure>
<img src="images/09_ga/09_ga_10.png" alt="Figure 9.9: A population of smart rockets seeking a delicious strawberry planet">
<figcaption>Figure 9.9: A population of smart rockets seeking a delicious strawberry planet</figcaption>
</figure>
<p>Each rocket is equipped with five thrusters of variable strength and direction (Figure 9.10). The thrusters dont fire all at once and continuously; rather, they fire one at a time in a custom sequence.</p>
<div class="half-width-right">
<figure>
<img src="images/09_ga/09_ga_11.png" alt="Figure 9.10: A single smart rocket with five thrusters, carrying Clawdius the astronaut">
<figcaption>Figure 9.10: A single smart rocket with five thrusters, carrying Clawdius the astronaut</figcaption>
</figure>
</div>
<p>In this section, I'm going to evolve my own simplified smart rockets, inspired by Jer Thorps. When I get to the end of the section, Ill leave implementing some of Thorps additional advanced features as an exercise.</p>
<p>My rockets will have only one thruster, and this thruster will be able to fire in any direction with any strength for every frame of animation. This isnt particularly realistic, but it will make building out the example a little easier. (You can always make the rocket and its thrusters more advanced and realistic later.)</p>
<h3 id="developing-the-rockets">Developing the Rockets</h3>
<p>To implement my evolving smart rockets, Ill start by taking the <code>Mover</code> class from Chapter 2 and renaming it <code>Rocket</code>.</p>
<pre class="codesplit" data-code-language="javascript">class Rocket {
constructor(x, y){
// A rocket has three vectors: position, velocity, acceleration.
this.position = createVector(x, y);
this.velocity = createVector();
this.acceleration = createVector();
}
// Accumulating forces into acceleration (Newtons 2nd law)
applyForce(force) {
this.acceleration.add(force);
}
// A simple physics engine (Euler integration)
update() {
// Velocity changes according to acceleration.
this.velocity.add(this.acceleration);
//{!1} Position changes according to velocity.
this.position.add(this.velocity);
this.acceleration.mult(0);
}
}</pre>
<p>With this class, I can move the rocket by calling <code>applyForce()</code> with a new force for every frame of animation. The “thruster” applies a single force to the rocket each time through <code>draw()</code>. But at this point Im far from done. To make my rockets “smart” an evolvable, I need to think about the three keys to programming a custom genetic algorithm, as outlined in the previous section.</p>
<p><strong>Key #1</strong> was to define the right global variables for the population size and mutation rate. Im going to hold off on worrying too much about these variables for now and arbitrarily choose some reasonable-sounding numbers—perhaps a population of 50 rockets and a mutation rate of 1 percent. Once Ive built the system out and have my sketch up and running, I can experiment with these numbers.</p>
<p><strong>Key #2</strong> was to develop an appropriate fitness function. In this case, the goal of a rocket is to reach its target. In other words, the closer a rocket gets to the target, the higher its fitness. Fitness is therefore inversely proportional to distance: the smaller the distance, the greater the fitness, and the greater the distance, the smaller the fitness.</p>
<p>To put this into practice, I first need to add a property to the <code>Rocket</code> class to store its fitness.</p>
<pre class="codesplit" data-code-language="javascript">class Rocket {
constructor(x, y){
//{!1} A Rocket has fitness.
this.fitness = 0;
this.position = createVector(x, y);
this.velocity = createVector();
this.acceleration = createVector();
}
</pre>
<p>Next, I need to add a method to calculate the fitness to the <code>Rocket</code> class. After all, only a <code>Rocket</code> object knows how to compute its distance to the target, so the fitness function should live in this class. Assuming I have a <code>target</code> vector, I can write the following:</p>
<pre class="codesplit" data-code-language="javascript"> calculateFitness() {
// How close did the rocket get?
let distance = p5.Vector.dist(this.position, target);
//{!1} Fitness is inversely proportional to distance.
this.fitness = 1 / distance;
}</pre>
<p>This is perhaps the simplest fitness function I could write. By dividing <code>1</code> by the distance, large distances become small numbers and small distances become large. If I wanted to use my quadratic trick from the previous section, I could divide <code>1</code> by the distance squared instead.</p>
<pre class="codesplit" data-code-language="javascript">calculateFitness() {
let distance = p5.Vector.dist(position, target);
//{!1} 1 divided by distance squared
this.fitness = 1 / (distance * distance);
}</pre>
<p>There are several additional improvements Ill want to make to the fitness function, but this is a good start.</p>
<p>Finally, <strong>Key #3</strong> was to think about the relationship between the genotype and the phenotype. Ive stated that each rocket has a thruster that fires in a variable direction with a variable magnitude—in other words, a vector! The genotype, the data required to encode the rockets behavior, is therefore an array of vectors, one for each frame of the animation.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor(length) {
this.genes = [];
for (let i = 0; i &#x3C; length; i++) {
this.genes[i] = createVector();
}
}
}</pre>
<p>The happy news here is that I dont really have to do anything else to the <code>DNA</code> class. All of the functionality for the typing cat (crossover and mutation) still applies. The one difference I do have to consider is how to initialize the array of genes. With the typing cat, I had an array of characters and picked a random character for each element of the array. Now Ill do exactly the same thing and initialize a DNA sequence as an array of random vectors.</p>
<p>Your instinct in creating a random vector might be as follows:</p>
<pre class="codesplit" data-code-language="javascript">let v = createVector(random(-1, 1), random(-1, 1));</pre>
<p>This is perfectly fine and will likely do the trick. However, if I were to draw every single possible vector that could be picked, the result would fill a square (see Figure 9.11, left). In this case, it probably doesnt matter, but theres a slight bias to the diagonals given that a vector from the center of a square to a corner is longer than a purely vertical or horizontal one.</p>
<figure>
<div class="col-list">
<div>
<img src="images/09_ga/09_ga_12.png" alt="Figure 9.11: On the left, vectors created with random x and y values. On the right, using p5.Vector.random2D().">
</div>
<div>
<img src="images/09_ga/09_ga_13.png" alt="">
</div>
</div>
<figcaption>Figure 9.11: On the left, vectors created with random <span data-type="equation">x</span> and <span data-type="equation">y</span> values. On the right, using <code>p5.Vector.random2D()</code>.</figcaption>
</figure>
<p>What would be better here is to pick a random angle and make a vector of length 1 from that angle, such that the results form a circle (see right of Figure 9.11). This could be done with a quick polar to Cartesian conversion, but an even quicker path to the result is just to use <code>p5.Vector.random2D()</code>.</p>
<pre class="codesplit" data-code-language="javascript">for (let i = 0; i &#x3C; length; i++) {
//{!1} A random unit vector
this.genes[i] = p5.Vector.random2D();
}</pre>
<p>A vector of length 1 would actually create quite a large force. Remember, forces are applied to acceleration, which accumulates into velocity 30 times per second (or whatever the frame rate is). Therefore, for this example, Ill add another variable to the <code>DNA</code> class, a maximum force, and randomly scale all the vectors to be somewhere between 0 and the maximum. This will control the thruster power.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor() {
// The genetic sequence is an array of vectors.
this.genes = [];
// How strong can the thrusters be?
this.maxForce = 0.1;
// Notice that the length of genes is equal to a global variable "lifeSpan" variable.
for (let i = 0; i &#x3C; lifeSpan; i++) {
this.genes[i] = p5.Vector.random2D();
//{!1} Scaling the vectors randomly, but no stronger than maximum force
this.genes[i].mult(random(0, maxforce));
}
}</pre>
<p>Notice that Im using <code>lifeSpan</code> to set the length of <code>genes</code>, the array of vectors. This global variable stores the total number of frames in each generations life cycle, allowing me to create a vector for each frame of the rockets life.</p>
<p>The expression of this array of vectors, the phenotype, is my <code>Rocket</code> class. To cement the connection, I need to add an instance of a <code>DNA</code> object to the class.</p>
<pre class="codesplit" data-code-language="javascript">class Rocket {
constructor(x, y, dna){
// A Rocket has DNA.
this.dna = dna;
//{!1} A Rocket has fitness.
this.fitness = 0;
this.position = createVector(x, y);
this.velocity = createVector();
this.acceleration = createVector();
}
</pre>
<p>What am I using <code>this.dna</code> for? As the rocket launches, it marches through the array of vectors and applies them one at a time as a force. To achieve this, Ill need to include a variable <code>this.geneCounter</code> to help step through the array.</p>
<pre class="codesplit" data-code-language="javascript">class Rocket {
constructor(x, y, dna) {
// A Rocket has DNA.
this.dna = dna;
// A Rocket has fitness.
this.fitness = 0;
//{!1} A counter for the dna genes array
this.geneCounter = 0;
this.position = createVector(x, y);
this.velocity = createVector();
this.acceleration = createVector();
}
run() {
// Apply a force from the genes array.
this.applyForce(this.dna.genes[this.geneCounter]);
// Go to the next force in the genes array.
this.geneCounter++;
//{!1} Update the Rockets physics.
this.update();
}
}</pre>
<p>Now I have a <code>DNA</code> class (genotype) and a <code>Rocket</code> class (phenotype). The last piece of the puzzle is a mechanism for managing the population of rockets and implementing selection and reproduction.</p>
<h3 id="managing-the-population">Managing the Population</h3>
<p>To keep my <em>sketch.js</em> file tidier, Ill put the code for managing the array of <code>Rocket</code> objects in a <code>Population</code> class. As with the <code>DNA</code> class, the happy news here is that I barely have to change anything from the typing cats example. Im just organizing the code in a more object-oriented way, with a <code>selection()</code> method and a <code>reproduction()</code> method. For the sake of demonstrating a different technique, Ill also normalize the fitness values in <code>selection()</code> and use the weighted selection (relay race) algorithm in <code>reproduction()</code>. This eliminates the need for a separate “mating pool” array. The <code>weightedSelection()</code> code is the same as what was written earlier in the chapter.</p>
<pre class="codesplit" data-code-language="javascript">class Population {
// Population has variables to keep track of mutation rate, current
// population array and number of generations.
constructor(mutation, length) {
// Mutation rate
this.mutationRate = mutation;
// Array to hold the current population
this.population = [];
//{!1} Number of generations
this.generations = 0;
for (let i = 0; i &#x3C; length; i++) {
this.population[i] = new Rocket(320, 220, new DNA());
}
}
// Calculate the fitness for each rocket.
fitness() {
for (let i = 0; i &#x3C; this.population.length; i++) {
this.population[i].calculateFitness();
}
}
// The selection method normalizes all the fitness values.
selection() {
// Sum all of the fitness values.
let totalFitness = 0;
for (let i = 0; i &#x3C; this.population.length; i++) {
totalFitness += this.population[i].fitness;
}
// Divide by the total to normalize the fitness values.
for (let i = 0; i &#x3C; this.population.length; i++) {
this.population[i].fitness /= totalFitness;
}
}
reproduction() {
//{!1} Separate array for the next generation
let newPopulation = [];
for (let i = 0; i &#x3C; this.population.length; i++) {
//{!2} Now using the weighted selection algorithm
let parentA = this.weightedSelection();
let parentB = this.weightedSelection();
let child = parentA.crossover(parentB);
child.mutate(this.mutationRate);
// Rocket goes in the new population
newPopulation[i] = new Rocket(320, 240, child);
}
// Now the new population is the current one.
this.population = newPopulation;
}</pre>
<p>Theres one more fairly significant change, however. With typing cats, a random phrase was evaluated as soon as it was created. The string of characters had no lifespan; it existed purely for the purpose of calculating its fitness. The rockets, however, need to live for a period of time before they can be evaluated—that is, they need to be given a chance to make their attempt at reaching the target. Therefore, I need to add one more method to the <code>Population</code> class that runs the physics simulation itself. This is identical to what I did in the <code>run()</code> method of a particle system: update all the particle positions and draw them.</p>
<pre class="codesplit" data-code-language="javascript"> live () {
for (let i = 0; i &#x3C; this.population.length; i++) {
//{!1} The run method takes care of the simulation, updates the rockets
// position, and draws it to the canvas.
this.population[i].run();
}
}</pre>
<p>Finally, Im ready for <code>setup()</code> and <code>draw()</code>. Here, my primary responsibility is to implement the steps of the genetic algorithm in the appropriate order by calling the methods from the <code>Population</code> class.</p>
<pre class="codesplit" data-code-language="javascript"> population.fitness();
population.selection();
population.reproduction();</pre>
<p>However, unlike the Shakespeare example, I dont want to do this every frame. Rather, my steps work as follows:</p>
<ol>
<li>Create a population of rockets</li>
<li>Let the rockets live for <span data-type="equation">N</span> frames</li>
<li>Evolve the next generation
<ul>
<li>Selection</li>
<li>Reproduction</li>
</ul>
</li>
<li>Return to step #2</li>
</ol>
<p>In order to know when to go from step 2 to 3, I need a <code>lifeCounter</code> variable that tracks the current generations progress, along with the <code>lifeSpan</code> variable. In <code>draw()</code>, while <code>lifeCounter</code> is less than <code>lifeSpan</code>, the populations <code>live()</code> method is called to run the simulation. Once <code>lifeCounter</code> hits <code>lifeSpan</code>, its time for <code>fitness()</code>, <code>selection(),</code> and <code>reproduction()</code> to evolve a new generation of rockets.</p>
<div data-type="example">
<h3 id="example-92-smart-rockets">Example 9.2: Smart Rockets</h3>
<figure>
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/jzfy_9p1ES" data-example-path="examples/09_ga/9_2_smart_rockets_basic"><img src="examples/09_ga/9_2_smart_rockets_basic/screenshot.png"></div>
<figcaption></figcaption>
</figure>
</div>
<pre class="codesplit" data-code-language="javascript">// How many frames does a generation live for?
let lifeSpan = 500;
// Keeping track of the lifespan
let lifeCounter = 0;
// The population
let population;
function setup() {
createCanvas(640, 240);
//{!1} Step 1: Create the population. Try different values for
// the mutation rate and population size.
population = new Population(0.01, 50);
}
function draw() {
background(255);
// The revised genetic algorithm
if (lifeCounter &#x3C; lifeSpan) {
// Step 2: The rockets live their life until lifeCounter reaches lifeSpan.
population.live();
lifeCounter++;
} else {
// When lifeSpan is reached, reset lifeCounter and evolve the next
// generation (Steps 3 and 4, selection and reproduction).
lifeCounter = 0;
population.fitness();
population.selection();
population.reproduction();
}
}
// Move the target if the mouse is pressed. The rockets will adapt to the new target.
function mousePressed() {
target.x = mouseX;
target.y = mouseY;
}</pre>
<p>At the bottom of the code, youll see that Ive added a new feature: when the mouse is pressed, the target position is moved to the coordinates of the mouse cursor. This change allows you to observe how the rockets adapt and adjust their trajectories toward the new target position as the system continuously evolves in real time.</p>
<h3 id="making-improvements">Making Improvements</h3>
<p>My smart rockets work, but they arent particularly exciting yet. After all, the rockets simply evolve toward having DNA with a bunch of vectors that point straight at the target. To make things more interesting, Im going to suggest two improvements for the example. For starters, when I first introduced the smart rocket scenario, I said the rockets should evolve the ability to avoid obstacles. Adding this feature will make the system more complex and demonstrate the power of the evolutionary algorithm more effectively.</p>
<p>To evolve obstacle avoidance, I need some obstacles to avoid. I can easily create rectangular, stationary obstacles by implementing a class of <code>Obstacle</code> objects that store their own position and dimensions.</p>
<pre class="codesplit" data-code-language="javascript">class Obstacle {
constructor(x, y, w, h) {
this.position = createVector(x, y);
this.w = w;
this.h = h;
}</pre>
<p>Ill add a <code>contains()</code> method to the <code>Obstacle</code> class that returns <code>true</code> if a rocket has hit the obstacle, or <code>false</code> otherwise.</p>
<pre class="codesplit" data-code-language="javascript"> contains(spot) {
return (
spot.x > this.position.x &#x26;&#x26;
spot.x &#x3C; this.position.x + this.w &#x26;&#x26;
spot.y > this.position.y &#x26;&#x26;
spot.y &#x3C; this.position.y + this.h
);
}</pre>
<p>If I create an array of <code>Obstacle</code> objects, I can then have each rocket check to see if its collided with each obstacle. If a collision occurs, the rocket can set a boolean flag <code>hitObstacle</code> to <code>true</code>. To achieve this, I need to add a method to the <code>Rocket</code> class.</p>
<pre class="codesplit" data-code-language="javascript"> // This new method lives in the Rocket class and checks if a rocket has
// hit an obstacle.
checkObstacles(obstacles) {
for (let obstacle of obstacles) {
if (obstacle.contains(this.position)) {
this.hitObstacle = true;
}
}
}</pre>
<p>If the rocket hits an obstacle, Ill stop it from updating its position. The revised <code>run()</code> method now receives an <code>obstacles</code> array as an argument.</p>
<pre class="codesplit" data-code-language="javascript"> run(obstacles) {
// Stop the rocket if it's hit an obstacle.
if (!this.hitObstacle) {
this.applyForce(this.dna.genes[this.geneCounter]);
this.geneCounter = (this.geneCounter + 1);
this.update();
// Check if rocket hits an obstacle
this.checkObstacles(obstacles);
}
this.show();
}</pre>
<p>I also have an opportunity to adjust the fitness of the rocket. If the rocket hits an obstacle, the fitness should be penalized and greatly reduced.</p>
<pre class="codesplit" data-code-language="javascript"> calculateFitness() {
let distance = p5.Vector.dist(this.position, target);
this.fitness = 1 / (distance * distance);
// {.bold !3}
if (this.hitObstacle) {
this.fitness *= 0.1;
}
}</pre>
<p>With that, the rockets should be able to evolve to avoid obstacles. But I wont stop now. Theres another improvement Id like to make.</p>
<p>If you look closely at Example 9.2, youll notice that the rockets arent rewarded for getting to the target faster. The only variable in the fitness calculation is the distance to the target at the end of the generations life. In fact, in the event that a rocket gets very close to the target but overshoots it and flies past, it may actually be penalized for getting to the target faster. Slow and steady wins the race in this case.</p>
<p>There are several ways in which I could improve the algorithm to optimize for speed to reach the target. First, I could calculate a rockets fitness based on the closest it comes to the target at any point during its life, instead of using its distance to the target at the end of the generation. Ill call this variable the rocket's <code>recordDistance</code> and update it as part of a <code>checkTarget()</code> method on the <code>Rocket</code> class.</p>
<pre class="codesplit" data-code-language="javascript"> checkTarget() {
let distance = p5.Vector.dist(this.position, target);
// Check if the distance is closer than the “record” distance. If it is, set a new record.
if (distance &#x3C; this.recordDistance) {
this.recordDistance = distance;
}</pre>
<p>Additionally, a rocket deserves a reward based on the speed with which it reaches its target. For that, I need to a way of knowing when a rocket has hit the target. Actually, I already have one: the <code>Obstacle</code> class has a <code>contains()</code> method, and theres no reason why the target cant also be implemented as an obstacle. It's just an obstacle that the rocket <em>wants</em> to hit! I can use the <code>contains()</code> method to set a new <code>hitTarget</code> flag on each <code>Rocket</code> object. A rocket will stop if it hits the target, just like it stops if it hits an obstacle.</p>
<pre class="codesplit" data-code-language="javascript"> // If the object reaches the target, set a boolean flag to true.
if (target.contains(this.position)) {
this.hitTarget = true;
}</pre>
<p>Remember, I also want the rocket to have a higher fitness the faster it reaches the target. Conversely, the slower it reaches the target, the lower its fitness score. To implement this, a <code>finishCounter</code> can be incremented every cycle of the rockets life until it reaches the target. At the end of its life, the counter will equal the amount of time the rocket took to reach the target.</p>
<pre class="codesplit" data-code-language="javascript"> // Increase the finish counter if it hasn't hit the target
if (!this.hitTarget) {
this.finishCounter++;
}
}</pre>
<p>I want the fitness to be inversely proportional to <code>finishCounter</code> as well. To achieve this, I can improve the fitness function with the following changes:</p>
<pre class="codesplit" data-code-language="javascript"> calculateFitness() {
// Reward finishing faster and getting close
this.fitness = 1 / (this.finishTime * this.recordDistance);
// Let's try to the power of 4 instead of squared!
this.fitness = pow(this.fitness, 4);
//{!3} Lose 90% of fitness for hitting an obstacle.
if (this.hitObstacle) {
this.fitness *= 0.1;
}
//{!3} Double the fitness for finishing!
if (this.hitTarget) {
this.fitness *= 2;
}
}</pre>
<p>These improvements are both incorporated into the code for Example 9.3.</p>
<div data-type="example">
<h3 id="example-93-smarter-rockets">Example 9.3: Smarter Rockets</h3>
<figure>
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/565K_KXSA" data-example-path="examples/09_ga/9_3_smart_rockets"><img src="examples/09_ga/9_3_smart_rockets/screenshot.png"></div>
<figcaption></figcaption>
</figure>
</div>
<p>There are many ways in which this example could be improved and further expanded. The following exercises offer some ideas and challenges to explore genetic algorithms in more depth. What else can you try?</p>
<div data-type="exercise">
<h3 id="exercise-99">Exercise 9.9</h3>
<p>Create a more complex obstacle course. As you make it more difficult for the rockets to reach the target, do you need to improve other aspects of the GA—for example, the fitness function?</p>
</div>
<div data-type="exercise">
<h3 id="exercise-910">Exercise 9.10</h3>
<p>Implement the rocket firing pattern of Jer Thorps original smart rockets. Each rocket only gets five thrusters (of any direction and strength) that follow a firing sequence (of arbitrary length). Thorps simulation also gives the rockets a finite amount of fuel.</p>
</div>
<div data-type="exercise">
<h3 id="exercise-911">Exercise 9.11</h3>
<p>Visualize the simulation differently. Can you draw a line for the shortest path to the target? Can you draw the rockets in a more interesting way? What about adding particle systems that act as smoke in the direction of the rocket thrusters?</p>
</div>
<div data-type="exercise">
<h3 id="exercise-912">Exercise 9.12</h3>
<p>Another way to teach a rocket to reach a target is to evolve a flow field. Can you make the genotype of a rocket a flow field of vectors?</p>
</div>
<h2 id="interactive-selection">Interactive Selection</h2>
<p>Karl Sims is a computer graphics researcher and visual artist who worked extensively with genetic algorithms. (Hes also well known for his work with particle systems!) One of his innovative evolutionary projects is the museum installation <em>Galapagos</em>. Originally installed in the Intercommunication Center in Tokyo in 1997, the installation consists of twelve monitors displaying computer-generated images. These images evolve over time, following the genetic algorithm steps of selection and reproduction.</p>
<p>The innovation here isnt the use of the genetic algorithm itself, but rather the strategy behind the fitness function. In front of each monitor is a sensor on the floor that can detect the presence of a visitor viewing the screen. The fitness of an image is tied to the length of time that viewers look at the image. This is known as <strong>interactive selection</strong>, a genetic algorithm with fitness values assigned by people.</p>
<p>Far from being confined to art installations, interactive selection is quite prevalent in the digital age of user-generated ratings and reviews. Could you imagine evolving the perfect song based on your Spotify ratings? Or the ideal book according to Goodreads reviews? In keeping with the books nature theme, however, Ill illustrate how interactive selection works using a population of digital flowers like the ones in Figure 9.12.</p>
<figure>
<img src="images/09_ga/09_ga_14.png" alt="9.12: Flower design for interactive selection">
<figcaption>9.12: Flower design for interactive selection</figcaption>
</figure>
<p>Each flower will have a set of properties: petal color, petal size, petal count, center color, center size, stem length, and stem color. A flowers DNA (genotype) is an array of floating point numbers between 0 and 1, with a single value for each property.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor() {
// The genetic sequence (14 properties for each flower)
this.genes = [];
for (let i = 0; i &#x3C; 14; i++) {
// DNA is random floating point values between 0 and 1
this.genes[i] = random(0, 1);
}
}</pre>
<p>The phenotype is a <code>Flower</code> class that includes an instance of a <code>DNA</code> object.</p>
<pre class="codesplit" data-code-language="javascript">class Flower {
constructor(dna){
// Flower DNA
this.dna = dna;
// How "fit" is this flower?
this.fitness = 1;
}</pre>
<p>When it comes time to draw the flower, Ill use p5.jss <code>map()</code> function to convert any gene value to the appropriate range for pixel dimensions or color values. (Ill also use <code>colorMode()</code> to set the RGB ranges between 0 and 1.)</p>
<pre class="codesplit" data-code-language="javascript"> show() {
//{.offset-top}
// The DNA values are assigned to flower properties
// such as petal color, petal size, number of petals, etc.
let genes = this.dna.genes;
// I'll set the RGB range to 0-1 with colorMode() and use map() as needed elsewhere for drawing the flower.
let petalColor = color(genes[0], genes[1], genes[2], genes[3]);
let petalSize = map(genes[4], 0, 1, 4, 24);
let petalCount = floor(map(genes[5], 0, 1, 2, 16));
let centerColor = color(genes[6], genes[7], genes[8]);
let centerSize = map(genes[9], 0, 1, 24, 48);
let stemColor = color(genes[10], genes[11], genes[12]);
let stemLength = map(genes[13], 0, 1, 50, 100); </pre>
<p>Up to this point, I havent done anything new. This is the same process Ive followed in every GA example so far. Whats different is that I wont be writing a <code>fitness()</code> function that computes the score based on a mathematical formula. Instead, Ill ask the user to assign the fitness.</p>
<p>How exactly to ask a user to assign fitness is best approached as an interaction design problem and isnt really within the scope of this book. Im not going to launch into an elaborate discussion of how to program sliders or build your own hardware dials or create a web app where people can submit online scores. How you choose to acquire fitness scores is up to you and the particular application youre developing. For this demonstration, I'll take inspiration from Simss <em>Galapagos</em> installation and simply increase a flowers fitness whenever the mouse is over it. Then the next generation of flowers is created when an “evolve next generation” button is pressed.</p>
<p>Look at how the steps of the genetic algorithm—selection and reproduction—are applied in the <code>nextGeneration()</code> function, which is triggered by the <code>mousePressed()</code> event attached to the p5.js <code>button</code> element. Fitness is increased as part of the <code>Population</code> classs <code>rollover()</code> method, which detects the presence of the mouse over any given flower design. More details about the sketch can be found in the accompanying example code on the books website.</p>
<div data-type="example">
<h3 id="example-94-interactive-selection">Example 9.4: Interactive Selection</h3>
<figure>
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/dUeAaapkQ" data-example-path="examples/09_ga/9_4_interactive_selection"><img src="examples/09_ga/9_4_interactive_selection/screenshot.png"></div>
<figcaption></figcaption>
</figure>
</div>
<pre class="codesplit" data-code-language="javascript">let population;
function setup() {
createCanvas(640, 240);
colorMode(RGB, 1);
// This is a very small population!
let populationSize = 8;
// A pretty high mutation rate here. Because our population is rather small, we need to enforce variety.
let mutationRate = 0.05;
// Create the population.
population = new Population(mutationRate, populationSize);
// A p5.js button
button = createButton("evolve new generation");
button.mousePressed(nextGeneration);
button.position(10, 210);
}
function draw() {
background(1);
// Draw the flowers.
population.show();
// Check for increasing fitness.
population.rollover(mouseX, mouseY);
textAlign(LEFT);
text("Generation " + population.generations, 12, height - 40);
}
// If the button is pressed, evolve the next generation.
function nextGeneration() {
population.selection();
population.reproduction();
}</pre>
<p>It should be noted that this example is just a demonstration of the idea of interactive selection and doesnt achieve a particularly meaningful result. For one, I didnt take much care in the visual design of the flowers; theyre just a few simple shapes with different sizes and colors. (See if you can spot the use of polar coordinates in the code, though!) Sims used more elaborate mathematical functions as the genotype for his images. You might also consider a vector-based approach, in which a design's genotype is a set of points and/or paths.</p>
<p>The more significant problem here, however, is one of time. In the natural world, evolution occurs over millions of years. In the computer simulation world of the chapters first examples, the populations are able to evolve behaviors relatively quickly because the new generations are being produced algorithmically. In the typing cat example, a new generation was born in each cycle through <code>draw()</code> (approximately 60 per second). Each generation of smart rockets had a lifespan of 250 frames—still a mere blink of the eye in evolutionary time. In the case of interactive selection, however, you have to sit and wait for a person to rate each and every member of the population before you can get to the next generation. A large population would be unreasonably tedious for the user to evaluate—not to mention, how many generations could you stand to sit through?</p>
<p>There are certainly clever ways around this problem. Simss <em>Galapagos</em> exhibit concealed the rating process from the viewers, as it occurred through the normal behavior of looking at artwork in a gallery setting. Building a web application that would allow many people to rate a population in a distributed fashion is also a good strategy for achieving ratings for large populations quickly.</p>
<p>In the end, the key to a successful interactive selection system boils down to the same keys previously established. What is the genotype and phenotype? And how do you calculate fitness—or in this case, whats your strategy for assigning fitness according to interaction?</p>
<div data-type="exercise">
<h3 id="exercise-913">Exercise 9.13</h3>
<p>Build your own interactive selection project. In addition to a visual design, consider evolving sounds—for example, a short sequence of tones. Can you devise a strategy, such as a web application or physical sensor system, to acquire ratings from many people over time?</p>
</div>
<div data-type="exercise">
<h3 id="exercise-914">Exercise 9.14</h3>
<p>Another of Karl Simss seminal works in the field of genetic algorithms is “Evolved Virtual Creatures.” In this project, a population of digital creatures in a simulated physics environment is evaluated for their ability to perform tasks, such as swimming, running, jumping, following, and competing for a green cube. The project uses a “node-based” genotype. In other words, the creatures DNA isnt a linear list of vectors or numbers, but a map of nodes (much like the soft body simulation in Chapter 6.) The phenotype is the creatures body itself, a network of limbs connected with muscles.</p>
<div class="half-width-right">
<figure>
<img src="images/09_ga/09_ga_15.png" alt="">
<figcaption></figcaption>
</figure>
</div>
<p>Can you design the DNA for a flower, plant, or creature as a “network” of parts? One idea is to use interactive selection to evolve the design. Alternatively, you could incorporate spring forces, perhaps with toxiclibs.js or Matter.js, to create a simplified 2D version of Simss creatures. What if they were to evolve according to a fitness function associated with a specific goal? For more about Simss techniques, you can read his <a href="https://www.karlsims.com/papers/siggraph94.pdf">1994 Paper </a>and watch the “<a href="https://youtu.be/RZtZia4ZkX8">Evolved Virtual Creatures</a>” video on YouTube.</p>
</div>
<h2 id="ecosystem-simulation">Ecosystem Simulation</h2>
<p>You may have noticed something a bit odd about the evolutionary systems Ive built so far in this chapter. In the real world, a population of babies isnt born all at the same time. Those babies dont then grow up and all reproduce at exactly the same time, then instantly die to leave the population size perfectly stable. That would be ridiculous. Not to mention the fact that theres certainly no one running around the forest with a calculator crunching numbers and assigning fitness values to all the creatures.</p>
<p>In the real world, as I discussed at the start of the chapter, you dont really have “survival of the fittest”; you have “survival of the reproducers.” Creatures that happen to live longer, in many cases, have a greater chance of reproducing. Babies are born, they live for a while, maybe they themselves have babies, maybe they dont, and then they die. Could I write a sketch that captures this more realistic take on evolutionary biology?</p>
<p>You wont necessarily find simulations of “real-world” evolution in artificial intelligence textbooks. Genetic algorithms are generally used in the more formal manner outlined earlier in this chapter. However, since youre reading this book to develop simulations of natural systems, its worth looking at how you might use a genetic algorithm to build something that resembles a living “ecosystem,” much like the one Ive described in the exercises at the end of each chapter.</p>
<p>Ill begin by imagining a simple scenario. Ill create a creature called a “bloop,” a circle that moves about the canvas according to Perlin noise. The creature will have a radius and a maximum speed. The bigger it is, the slower it moves; the smaller, the faster.</p>
<pre class="codesplit" data-code-language="javascript">class Bloop {
constructor(x, y) {
this.position = createVector(x, y);
//{!2} Each bloop will use a different part of the 1D noise space
this.xoff = random(1000);
this.yoff = random(1000);
this.maxSpeed = 5;
this.r = 8;
}
// Simple movement, velocity assigned with Perlin noise
update() {
let vx = map(noise(this.xoff), 0, 1, -this.maxspeed, this.maxspeed);
let vy = map(noise(this.yoff), 0, 1, -this.maxspeed, this.maxspeed);
this.xoff += 0.01;
this.yoff += 0.01;
let velocity = createVector(vx, vy);
this.position.add(velocity);
}
//{!3} A bloop is a circle.
show() {
stroke(0);
fill(127);
circle(this.position.x, this.position.y, this.r * 2);
}
}</pre>
<p>As usual, the population of bloops can be stored in an array, which in turn can be managed by a class called <code>World</code>.</p>
<pre class="codesplit" data-code-language="javascript">class World {
//{!1} A list of bloops
constructor(populationSize) {
// An array of bloops
this.bloops = [];
for (let i = 0; i &#x3C; populationSize; i++) {
// Create each bloop with a starting position
this.bloops.push(new Bloop(random(width), random(height)));
}
}</pre>
<p>So far, Im just rehashing the particle systems from Chapter 4. I have an entity called <code>Bloop</code> that moves around the canvas, and a class called <code>World</code> that manages a variable quantity of these entities. To turn this into a system that evolves, I need to add two additional features to my world:</p>
<ul>
<li><strong>Bloops die.</strong></li>
<li><strong>Bloops are born.</strong></li>
</ul>
<p>Bloops dying is my replacement for a fitness function and the process of selection. If a bloop dies, it cant be selected to be a parent, because it no longer exists! One way I can build a mechanism to ensure bloop deaths in the world is by adding a <code>health</code> variable to the <code>Bloop</code> class.</p>
<pre class="codesplit" data-code-language="javascript">class Bloop {
constructor(position, dna) {
//{!1} Variable to track the bloop's "health"
this.health = 100;
// All the rest of the constructor
}
}</pre>
<p>Each time through <code>update()</code>, a bloop loses some health.</p>
<pre class="codesplit" data-code-language="javascript"> update() {
// Death always looming
this.health -= 0.2;
// All the rest of update()
}</pre>
<p>If <code>health</code> drops below <code>0</code>, the bloop dies.</p>
<pre class="codesplit" data-code-language="javascript"> // A method to test if the bloop is alive or dead.
dead() {
return (this.health &#x3C; 0.0);
}</pre>
<p>This is a good first step, but I havent really achieved anything. After all, if all bloops start with 100 health points and lose health at the same rate, then all bloops will live for the exact same amount of time and die together. If every single bloop lives the same amount of time, each one has an equal chance of reproducing, and therefore no evolutionary change will occur.</p>
<p>There are several ways to achieve variable lifespans with a more sophisticated world. One approach is to introduce predators that eat bloops. Faster bloops would be more likely to escape being eaten, leading to the evolution of increasingly faster bloops. Another option is to introduce food. When a bloop eats food, its health points increase, extending its life.</p>
<p>Lets assume theres an array of vector positions called <code>food</code>. I could test each bloops proximity to each food position. If the bloop is close enough, it eats the food (which is then removed from the world) and increases its health.</p>
<pre class="codesplit" data-code-language="javascript"> eat(food) {
// Check all the food vectors
for (let i = food.length - 1; i >= 0; i--) {
// How far away is the bloop?
let distance = p5.Vector.dist(this.position, food[i]);
// If the food is within its radius
if (distance &#x3C; this.r) {
//{!2} Increase health and remove the food!
this.health += 100;
food.splice(i, 1);
}
}
}</pre>
<p>In this scenario, bloops that eat more food are expected to live longer and have a greater likelihood of reproducing. As a result, the system should evolve bloops with an optimal ability to find and consume food.</p>
<p>Now that the world has been built, its time to add the components necessary for evolution. The first step is to establish the genotype and phenotype.</p>
<h3 id="genotype-and-phenotype">Genotype and Phenotype</h3>
<div class="half-width-right">
<figure>
<img src="images/09_ga/09_ga_16.png" alt="Figure 9.13: Small and big “bloop” creatures. The example will use simple circles, but you should try being more creative!">
<figcaption>Figure 9.13: Small and big “bloop” creatures. The example will use simple circles, but you should try being more creative!</figcaption>
</figure>
</div>
<p>The ability for a bloop to find food is tied to two variables—size and speed (see Figure 9.13). Bigger bloops will find food more easily simply because their size will allow them to intersect with food positions more often. And faster bloops will find more food because they can cover more ground in a shorter period of time.</p>
<p>Since size and speed are inversely related (large bloops are slow, small bloops are fast), I only need a genotype with a single number.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
constructor() {
// The genetic sequence is a single value!
// It may seem absurd to use an array for just one number, but this will
// scale for more sophisticated bloop designs.
this.genes = [];
for (let i = 0; i &#x3C; 1; i++) {
this.genes[i] = random(0, 1);
}
}</pre>
<p>The phenotype is the bloop itself, whose size and speed are assigned by adding an instance of a <code>DNA</code> object to the <code>Bloop</code> class.</p>
<pre class="codesplit" data-code-language="javascript">class Bloop {
constructor(x, y, dna) {
this.dna = dna;
// DNA will determine size and maxspeed.
// The bigger the bloop, the slower it is.
this.maxSpeed = map(this.dna.genes[0], 0, 1, 15, 0);
this.r = map(this.dna.genes[0], 0, 1, 0, 25);
// All the rest of the bloop initialization
}</pre>
<p>Note that the <code>maxSpeed</code> property is mapped to a range between <code>15</code> and <code>0</code>. This means that a bloop with a gene value of <code>0</code> will move at a speed of <code>15</code>, while a bloop with a gene value of <code>1</code> wont move at all (speed of <code>0</code>).</p>
<h3 id="selection-and-reproduction">Selection and Reproduction</h3>
<p>Now that I have the genotype and phenotype, I need to move on to devising a method for selecting bloops as parents. I stated before that the longer a bloop lives, the more chances it has to reproduce. The length of a bloops life is its fitness.</p>
<p>One option would be to say that whenever two bloops come into contact with each other, they make a new bloop. The longer a bloop lives, the more likely it is to come into contact with another bloop. This would also affect the evolutionary outcome, since the likelihood of giving birth, in addition to eating food, depends upon a bloops ability to locate other bloops.</p>
<p>A simpler option would be for bloops to “clone” themselves without needing a partner bloop, creating another bloop with the same genetic makeup instantly. For example, what if I said that at any given moment, a bloop has a 1 percent chance of reproducing? With this selection algorithm, the longer a bloop lives, the more likely it will clone itself. This is equivalent to saying the more times you play the lottery, the greater the likelihood youll win (though Im sorry to say your chances of winning the lottery are still essentially zero).</p>
<p>To implement this selection algorithm, I can write a method in the <code>Bloop</code> class that picks a random number every frame. If the number is less than 0.01 (1 percent), a new bloop is born.</p>
<pre class="codesplit" data-code-language="javascript"> // This method will return a new "child" bloop.
reproduce() {
// A 1% chance of executing the code inside the if statement
if (random(1) &#x3C; 0.01) {
/* A Bloop baby! */
}
}</pre>
<p>How does a bloop reproduce? In previous examples, the reproduction process involved calling the <code>crossover()</code> method in the <code>DNA</code> class and creating a new object from the resulting array of genes. However, in this case, since Im making a child from a single parent, I'll call a method called <code>copy()</code> instead.</p>
<pre class="codesplit" data-code-language="javascript"> reproduce() {
if (random(1) &#x3C; 0.005) {
// A child is an exact copy of single parent.
let childDNA = this.dna.copy();
// 1% mutation rate
childDNA.mutate(0.01);
// The new bloop starts at this bloop's position.
return new Bloop(this.position.copy(), childDNA);
}
}</pre>
<p>Note that Ive lowered the probability of reproduction from 1 percent to 0.05 percent. This change makes a significant difference; with a high reproduction probability, the system will rapidly become overpopulated. Too low a probability and everything will likely die out quickly.</p>
<p>Writing the <code>copy()</code> method into the <code>DNA</code> class is easy with the JavaScript array method <code>slice()</code>, a standard JavaScript method that makes a new array by copying elements from an existing array.</p>
<pre class="codesplit" data-code-language="javascript">class DNA {
//{!1} This copy() method replaces crossover().
copy() {
// Create new DNA (with random genes)
let newDNA = new DNA();
//{!1} Overwrite the random genes with a copy this DNA's genes
newDNA.genes = this.genes.slice();
return newDNA;
}
}</pre>
<p>With the selection and reproduction pieces in place, I can finalize the <code>World</code> class to manage a list of all <code>Bloop</code> objects, as well as a <code>Food</code> object that contains a list of positions for the food (which Ill draw as small squares).</p>
<p>Before you run the example, take a moment to guess what size and speed of bloops the system will evolve toward. Ill discuss following the code.</p>
<div data-type="example">
<h3 id="example-95-an-evolving-ecosystem">Example 9.5: An Evolving Ecosystem</h3>
<figure>
<div data-type="embed" data-p5-editor="https://editor.p5js.org/natureofcode/sketches/1HDlp_tKF" data-example-path="examples/09_ga/9_5_evolving_bloops"><img src="examples/09_ga/9_5_evolving_bloops/screenshot.png"></div>
<figcaption></figcaption>
</figure>
</div>
<pre class="codesplit" data-code-language="javascript">let world;
function setup() {
createCanvas(640, 240);
//{!1} The World starts with 20 bloops and 20 pieces of food.
world = new World(20);
}
function draw() {
background(255);
world.run();
}
class World {
//{!2} The World class manages the
// population of bloops and all the food.
constructor(populationSize) {
// Create the population.
this.bloops = [];
for (let i = 0; i &#x3C; populationSize; i++) {
let position = createVector(random(width), random(height));
let dna = new DNA();
this.bloops.push(new Bloop(position, dna));
}
// Create the food
this.food = new Food(populationSize);
}
// Run the world
run() {
// This method draws the food and adds new food when necessary.
this.food.run();
// Manage the bloops (cycle through array backwards since bloops are deleted).
for (let i = this.bloops.length - 1; i >= 0; i--) {
// All bloops run and eat.
let bloop = this.bloops[i];
bloop.run();
bloop.eat(this.food);
// If it's dead, remove it and create food
if (bloop.dead()) {
this.bloops.splice(i, 1);
this.food.add(bloop.position);
} else {
//{!2} Here is where each living bloop has a chance to reproduce.
// If it does, the child is added to the population.
// Note the value of "child" is undefined if it does not.
let child = this.bloops[i].reproduce();
if (child) {
this.bloops.push(child);
}
}
}
}
}</pre>
<p>If you guessed medium-sized bloops with medium speed, youre right. With the design of this system, bloops that are large are simply too slow to find food. And bloops that are fast are too small to find food. The ones that are able to live the longest tend to be in the middle, large enough and fast enough to find food (but not too large or too fast). There are also some anomalies. For example, if it so happens that a bunch of large bloops end up in the same position (and barely move because they are so large), they may all die out suddenly, leaving a lot of food for one large bloop who happens to be there to eat and allowing a mini-population of large bloops to sustain themselves for a period of time in one position.</p>
<p>This example is rather simplistic given its single gene and cloning instead of crossover. Here are some suggestions for how you might apply the bloop example in a more elaborate ecosystem simulation.</p>
<div data-type="project">
<h3 id="the-ecosystem-project-9">The Ecosystem Project</h3>
<p>Step 9 Exercise:</p>
<p>Add evolution to your ecosystem, building from the examples in this chapter.</p>
<ul>
<li>Add a population of predators to your ecosystem. Biological evolution between predators and prey (or parasites and hosts) is often referred to as an “arms race,” in which the creatures continuously adapt and counter-adapt to each other. Can you achieve this behavior in a system of multiple creatures?</li>
<li>How would you implement crossover and mutation between two parents in an ecosystem modeled after the bloops? Try implementing an algorithm so that two creatures mate when within a certain proximity.</li>
<li>Try using the weights of multiple steering forces as a creatures DNA. Can you create a scenario in which creatures evolve to cooperate with each other?</li>
<li>One of the greatest challenges in ecosystem simulations is achieving balance. You will likely find that most of your attempts result in either mass overpopulation (followed by mass extinction) or mass extinction straight away. What techniques can you employ to achieve balance? Consider using the genetic algorithm itself to evolve optimal parameters for an ecosystem.</li>
</ul>
<p></p>
</div>
</section>