-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.html
More file actions
95 lines (92 loc) · 6.32 KB
/
info.html
File metadata and controls
95 lines (92 loc) · 6.32 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Genetic maze</title>
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/fonts/ionicons.min.css">
<link rel="stylesheet" href="assets/fonts/font-awesome.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=ABeeZee">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="assets/css/Footer-Basic.css">
<link rel="stylesheet" href="assets/css/Navigation-Clean.css">
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<nav class="navbar navbar-light navbar-expand-md">
<div class="container-fluid"><a class="navbar-brand" href="main.html" style="font-family:ABeeZee, sans-serif;color:#6d28aa;font-size:34px;">Genetic Maze</a><button class="navbar-toggler" data-toggle="collapse" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
<div
class="collapse navbar-collapse" id="navcol-1">
<ul class="nav navbar-nav"></ul>
</div>
</div>
</nav>
<div style="padding-top:21px;">
<div class="container" style="padding-top:0;box-shadow:0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);">
<div class="row">
<div class="col-md-8 col-lg-3 col-xl-2" style="padding-right:27px;background-color:#59118e;"></div>
<div class="col-md-4 col-lg-9 col-xl-10">
<h2 style="font-family:ABeeZee, sans-serif;color:#6d28aa;">Information</h2>
<hr>
<div class="card">
<div class="card-header">
<h5 class="mb-0" style="color:#6d28aa;font-family:ABeeZee, sans-serif;">The Genetic Maze</h5>
</div>
<div class="card-body" style="font-family:Roboto, sans-serif;">
<div class="row">
<div class="col">
<p>Can machines learn? if so, how much processing power is needed?<br>Seeking to demonstrate the answers to these questions, I developed the Genetic Maze project. <br>A program that allows you to demonstrate the learning
power of a machine in a simple problem: getting from one end to the other of a "maze". Learning is done through a concept known with a genetic algorithm.</p>
</div>
</div>
</div>
</div>
<div class="card" style="margin-top:12px;">
<div class="card-header">
<h5 class="mb-0" style="color:#6d28aa;font-family:ABeeZee, sans-serif;">What is a genetic algorithm?</h5>
</div>
<div class="card-body" style="font-family:Roboto, sans-serif;">
<div class="row">
<div class="col">
<p style="padding-top:6px;">In short, a genetic algorithm (aka GA) simulates natural selection to solve an optimization problem.<br>For this purpose, several organisms are created, in our case "red" cells.<br>Each red cell receives a gene, which
is nothing more than a series of instructions on how to move through the maze.<br>The cells are grouped in generations that live for a certain time, at the end of life the best, that is, those that came closest
to a solution are chosen to pass their genes on to the next generation (their children)<br>In this way, each generation approaches a solution: and thus a population of simulated individuals learns to solve a certain
problem.</p>
</div>
</div>
</div>
</div>
<div class="card" style="padding-top:0;margin-top:12px;">
<div class="card-header" style="font-family:ABeeZee, sans-serif;">
<h5 class="mb-0" style="color:#6d28aa;font-family:ABeeZee, sans-serif;">Installation<br></h5>
</div>
<div class="card-body">
<p style="font-family:Roboto, sans-serif;">Should such a program use a lot of power then?<br>The answer is no. This program made in javascript can be run on any PC with minimum requirements such as a connection to the internet and a browser<br>To execute it just download
the folder and open the file "main.html"<br>preferably with Google Chrome</p>
</div>
</div>
<div class="card" style="margin-top:12px;">
<div class="card-header">
<h5 class="mb-0" style="color:#6d28aa;font-family:ABeeZee, sans-serif;">More info<br></h5>
</div>
<div class="card-body">
<p style="font-family:Roboto, sans-serif;">For more detailed information on how the program works, changes and settings, etc. click below or open detailInfo.html</p>
<button
class="btn btn-outline-light" type="button" style="font-family:ABeeZee, sans-serif;background-color:#6d28aa;" onclick="window.location.href='detailInfo.html'">Detailed information</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="footer-basic" style="margin:12px;">
<footer>
<div class="social"><a href="#"><i class="icon ion-social-github"></i></a><a href="info.html"><i class="icon ion-information-circled"></i></a></div>
<p class="copyright" style="font-family:Roboto, sans-serif;font-size:16px;">Coded By Joao P Maia</p>
</footer>
</div>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
</body>
</html>