-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (48 loc) · 1.35 KB
/
index.html
File metadata and controls
51 lines (48 loc) · 1.35 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
<!doctype html>
<html lang="en" dir="ltr">
<head>
<title>edunet – visualised neural networks</title>
<meta charset="utf-8">
<link rel="stylesheet" href="index.css">
<script src="main.js"></script>
</head>
<body>
<div class="section section-top">
<button class="button button-remove">–</button>
<div class="layer-labels"></div>
<button class="button button-add">+</button>
</div>
<div class="section section-main">
<svg class="canvas" viewBox="0 0 768 512">
<g class="network"></g>
<g class="overlay"></g>
<g class="text"></g>
</svg>
</div>
<div class="section section-bottom">
<form name="functionType" class="function-selector">
<label>
<input type="radio" name="function" value="threshold" checked>
<div class="function">
φ(x) = {
<span class="stack">
<span>0 ∀ x<10</span>
<span>1 ∀ x≥10</span>
</span>
</div>
</label>
<label>
<input type="radio" name="function" value="sigmoid">
<div class="function">
φ(x) =
<span class="fraction">
<span>1</span>
<span>1+e<sup>-x</sup></span>
</span>
</div>
</label>
</form>
<div class="copyright"><span class="copy">©</span> <a href="https://github.com/eintyp/edunet/blob/main/LICENSE">Free Software</a> made by <a href="https://github.com/eintyp">eintyp</a></div>
</div>
</body>
</html>