-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.html
40 lines (35 loc) · 1.54 KB
/
Main.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Natural Selection Simulation</title>
<style>
body{
background-color: rgb(189, 171, 114);
}
h1,h2{
text-align:center;
}
a{
margin-left:39rem;
font-size:3rem;
text-decoration:none;
}
p{
font-size:1.8rem;
}
h2{
margin-top:3rem;
margin-bottom:5rem;
}
</style>
</head>
<body>
<h1>Abstract</h1>
<p>This algorithms is for simulating natural selection. First, we have some population of individuals(balls) and all of those individuals have genes(which represents their behaviours). In our sample the genes are 2d vectors that indicate the point where the balls move in a time on a 2d plane.We give random genes when the program starts. Moreover, there is a small blue square and the balls should reach the square to survive. So, when we generate next generations, everytime we take the genes of the previous generations who move close to the square.As generations evolved they move closer to the square. After certain time passed, we can see that they start to reach blue square which means they survive.Genetic algorithm is also great example of machine learning. </p>
<h2>To see the simulation click the link:</h2>
<a href="generic.html">Continue</a>
</body>
</html>