-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (32 loc) · 946 Bytes
/
index.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Neural Network Playground</title>
</head>
<body>
<div class="main-header">
<div>
<h1>Neural Network Playground</h1>
<p>
This is a tool to experiment basic neural network architectures and build intuitions on machine learning.
</p>
<p>
Find more at <a
href="https://github.com/akarzazi/neural-network-playground">https://github.com/akarzazi/neural-network-playground</a>.
</p>
</div>
<div>
<h4>The problem</h4>
<p>
The network must guess the relationship between inputs (a,b) and the result 'label'.
The inputs 'a' and 'b' are represented on the 2d plane and the 'label' is represented by the color scale.<br />
</p>
<p>
Click on the 'play button' to start the training.
</p>
</div>
</div>
<div class="main-body" id="root"></div>
</body>
</html>