forked from abaybektursun/why-batchNorm-works
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (62 loc) · 2.54 KB
/
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
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
<meta http-equiv="content-type" content="text/html; charset=UTF8">
<html>
<head>
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.cyan-teal.min.css" />
<link href="node_modules/c3/c3.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
</head>
<body>
<div style="width:75%">
<canvas id="canvas"></canvas>
<div style="padding: 9px">
<button id="randomizeData" class="btn btn-block btn-rand">Randomize the Data Points</button>
</div>
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">Subtract the mean</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<button id="subMean" class="btn btn-default btn-block">Center</button>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h5 class="card-title">Normalize the Variance</h5>
<p class="card-text">With supporting text below as a natural lead-in to additional content.</p>
<button id="normVar" class="btn btn-default btn-block">Normalize</button>
</div>
</div>
</div>
</div>
</div>
<button id="train0" class="btn btn-block btn-rand">Train</button>
<div>
<div style='float: left; width: 45%' id="chart_losses_0"></div>
<div style='float: right; width: 45%' id="chart_accuracy_0"></div>
</div>
<button id="train1" class="btn btn-block btn-rand">Train</button>
<div>
<div style='float: left; width: 45%' id="chart_losses_1"></div>
<div style='float: right; width: 45%' id="chart_accuracy_1"></div>
</div>
<!--div>
<div style='float: left; width: 45%' id="meanChange_1"></div>
<div style='float: right; width: 45%' id="varChange_1"></div>
</div-->
<div>
<div style='float: left; width: 45%' id="l2meanChange_1"></div>
<div style='float: right; width: 45%' id="l2varChange_1"></div>
</div>
<button id="train2" class="btn btn-block btn-rand">Train</button>
<div>
<div style='float: left; width: 45%' id="lossLand2"></div>
<div style='float: right; width: 45%' id="betaSmooth2"></div>
</div>
<p> </p>
<script src="index.js"></script>
</body>
</html>