-
Notifications
You must be signed in to change notification settings - Fork 0
/
perceptrons.html
33 lines (29 loc) · 1.1 KB
/
perceptrons.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
<html>
<head>
<title>Simple Perceptrons</title>
<link rel="stylesheet" href="./bootstrap-3.3.7-dist/css/bootstrap.min.css">
<link rel="shortcut icon" type="image/png" href="./res/favicon.png">
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="./p5js/p5.js">
</script>
<script type="text/javascript" src="perceptrons.js">
</script>
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-lg-6">
<h2 class="text-uppercase"> Simple Perceptrons</h2>
<p class="text-monospace"> Visualizes 1000 points and uses the perceptrons to guess correctly if the
point lies above or below the dividing line.
<blockquote class="blockquote mb-0"> <p class="text-monospace">Green points indicate that the point was guessed correctly.
Whereas Red points indicate incorrect guess.</p></blockquote>
<p class="text-monospace">
We slowly converge to a function which guesses all the points correctly using
simple gradient descent.
</p>
</div>
</div>
</div>
</body>
</html>