-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
88 lines (61 loc) · 2.91 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>Atlas: Loss Surface Visualization</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=AM_CHTML"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/[email protected]/dist/tf.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pako/1.0.10/pako.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre.min.css">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-exp.min.css">
<link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-icons.min.css">
<link rel="stylesheet" href="style.css">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-139988136-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-139988136-1');
</script>
</head>
<body>
<div id="loadingBox"></div>
<input style="display:none" id="filePicker" type="file" />
<div id="modalBox"></div>
<div class="off-canvas off-canvas-sidebar-show" id="main">
<div class="off-canvas-sidebar bg-primary" id="sidebar">
<div class="container pt-2">
<h4 class="text-center pt-2">Variables</h4>
<div id="variableBox"></div>
</div>
</div>
<a class="off-canvas-overlay" href="#close"></a>
<div class="off-canvas-content pl-2" style="overflow-y:scroll">
<header class="navbar p-2" id="navbarBox"></header>
<div class="container">
<div class="columns">
<div class="column col-12" id="messageBox"></div>
<div class="column col-12">
<textarea class="form-input mt-2 input-lg" rows="3" placeholder="Type expression to minimize here" id="expressionSource"></textarea>
</div>
<div class="text-center column col-12" id="expressionRendering" style="color:#fff">``</div>
<div class="column col-xs-8">
<div id="visualizerBox"></div>
<div class='mt-2 mb-2' id="scratchBox"></div>
</div>
<div class="column col-xs-4">
<div id='settingsBox'></div>
<div class="mt-2" id="lossBox"></div>
</div>
</div>
</div>
</div>
</div>
<script type="module" src="index.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<script src="libraries/moo.js"></script>
</body>
</html>