-
Notifications
You must be signed in to change notification settings - Fork 654
/
index.html
372 lines (307 loc) · 18.6 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-119008715-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-119008715-1');
</script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<style type="text/css">
* { font-weight: 100; }
h1 { font-weight: 100; }
#graph-container {
top: 0;
bottom: 0;
left: 0;
right: 0;
position: fixed;
}
.nn-picker {
width: 410px;
margin: 30px;
z-index: 1000;
}
[data-toggle="collapse"] .fa:before {
font-size: 2rem;
color: black;
content: "\f106";
position: relative;
top: 5px;
}
.fa {
transition: 0.3s transform ease-in-out;
}
.collapsed .fa {
transform: rotate(-180deg);
}
.tab-content {
padding: 20px;
}
input[type="range"] {
margin-left: 10px;
}
#count {
position: fixed;
bottom: 0;
right: 1rem;
opacity: 0.4;
font-weight: 100;
}
.text {
font-weight: 300;
}
</style>
<title>NN SVG</title>
</head>
<body>
<div id="graph-container"></div>
<div class="container-fluid">
<div class="row">
<div class="nn-picker">
<div class="card">
<div class="card-header">
<a class="pull-right" data-toggle="collapse" href="#collapsable" role="button"><i class="fa"></i></a>
<h1>NN-SVG</h1>
<p>Publication-ready NN-architecture schematics. <a id="download" href="#">Download SVG</a></p>
<nav>
<div class="nav nav-tabs card-header-tabs" role="tablist">
<a class="nav-item nav-link active">FCNN style</a>
<a class="nav-item nav-link" href="LeNet.html">LeNet style</a>
<a class="nav-item nav-link" href="AlexNet.html">AlexNet style</a>
</div>
</nav>
</div>
<div class="tab-content collapse show" id="collapsable">
<div class="tab-pane fade show active" id="FCNN" role="tabpanel">
<h4>Style:</h4>
<!-- Edge Properties -->
<hr>
<div>
<input type="checkbox" id="edgeWidthProportional" name="edgeWidthProportional" value="edgeWidthProportional">
<label for="edgeWidthProportional">Edge width proportional to edge weights</label>
</div>
<div>
<label for="edgeWidth">Edge Width</label>
<input type="range" id="edgeWidth" name="" min="0" max="2" step="0.01" value="0.5" style="position: relative; top: 3px;">
</div>
<hr>
<div>
<input type="checkbox" id="edgeOpacityProportional" name="edgeOpacityProportional" value="edgeOpacityProportional">
<label for="edgeOpacityProportional">Edge opacity proportional to edge weights</label>
</div>
<div>
<label for="edgeOpacity">Edge Opacity</label>
<input type="range" id="edgeOpacity" name="" min="0" max="1" step="0.01" value="1" style="position: relative; top: 3px;">
</div>
<hr>
<div>
<input type="checkbox" id="edgeColorProportional" name="edgeColorProportional" value="edgeColorProportional">
<label for="edgeColorProportional">Edge color proportional to edge weights</label>
</div>
<div>
<input type="color" value="#0000ff" id="negativeEdgeColor">
<label for="negativeEdgeColor">Negative Edge Color</label>
</div>
<div>
<input type="color" value="#ff0000" id="positiveEdgeColor">
<label for="positiveEdgeColor">Positive Edge Color</label>
</div>
<div>
<input type="color" value="#505050" id="defaultEdgeColor">
<label for="defaultEdgeColor">Default Edge Color</label>
</div>
<hr>
<div>
<input type="checkbox" id="bezierCurves" name="bezierCurves" value="bezierCurves">
<label for="bezierCurves">Use Bezier Curves</label>
</div>
<!-- Node Properties -->
<hr>
<div>
<label for="nodeDiameter">Node Diameter</label>
<input type="range" id="nodeDiameter" name="" min="10" max="50" step="1" value="20" style="position: relative; top: 3px;">
</div>
<div>
<input type="color" value="#ffffff" id="nodeColor">
<label for="nodeColor">Node Color</label>
</div>
<div>
<input type="color" value="#333333" id="nodeBorderColor">
<label for="nodeBorderColor">Node Border Color</label>
</div>
<!-- Layer Properties -->
<hr>
<div>
<label for="betweenLayers">Layer Spacing</label>
<input type="range" id="betweenLayers" name="" min="30" max="400" step="1" value="160" style="position: relative; top: 3px;">
</div>
<div id="nnDirection">
<label for="nnDirection" style="margin-right:10px;">Direction</label>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="nnDirection" id="horizontal" value="right" checked> horizontal
</label>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="nnDirection" id="vertical" value="up"> vertical
</label>
</div>
</div>
<div>
<input type="checkbox" id="showBias" name="showBias" value="showBias">
<label for="showBias">Show Bias Units</label>
</div>
<div>
<input type="checkbox" id="showLabels" name="showLabels" value="showLabels" checked>
<label for="showLabels">Show Layer Labels</label>
</div>
<div>
<div id="arrowhead">
<input type="checkbox" id="showArrowheads" name="showArrowheads" value="showArrowheads">
<label for="showArrowheads">Show Arrowheads</label>
<div class="form-check form-check-inline ml-3">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="arrowheadStyle" id="empty" value="empty" checked> empty
</label>
</div>
<div class="form-check form-check-inline">
<label class="form-check-label">
<input class="form-check-input" type="radio" name="arrowheadStyle" id="solid" value="solid"> solid
</label>
</div>
</div>
</div>
<hr>
<h4>Architecture:</h4>
<hr>
<div id="architecture">
<div class="row entry">
<div class="input-group mb-2 mr-sm-2 col-4">
<button class="btn btn-secondary btn-remove input-group-prepend"><span class="fa fa-minus"></span></button>
<input type="number" class="form-control" name="numberOfNodes" step="1" value="16" />
</div>
<input type="range" class="form-control col-4" name="betweenNodesInLayer" min="0" max="100" step="1" value="20" style="position: relative; top: -4px;">
</div>
<div class="row entry">
<div class="input-group mb-2 mr-sm-2 col-4">
<button class="btn btn-secondary btn-remove input-group-prepend"><span class="fa fa-minus"></span></button>
<input type="number" class="form-control" name="numberOfNodes" step="1" value="12" />
</div>
<input type="range" class="form-control col-4" name="betweenNodesInLayer" min="0" max="100" step="1" value="20" style="position: relative; top: -4px;">
</div>
<div class="row entry">
<div class="input-group mb-2 mr-sm-2 col-4">
<button class="btn btn-secondary btn-remove input-group-prepend"><span class="fa fa-minus"></span></button>
<input type="number" class="form-control" name="numberOfNodes" step="1" value="10" />
</div>
<input type="range" class="form-control col-4" name="betweenNodesInLayer" min="0" max="100" step="1" value="20" style="position: relative; top: -4px;">
</div>
<div class="row entry">
<div class="input-group mb-2 mr-sm-2 col-4">
<button class="btn btn-secondary btn-remove input-group-prepend"><span class="fa fa-minus"></span></button>
<input type="number" class="form-control" name="numberOfNodes" step="1" value="1" />
</div>
<input type="range" class="form-control col-4" name="betweenNodesInLayer" min="0" max="100" step="1" value="20" style="position: relative; top: -4px;">
</div>
<div class="row entry">
<div class="input-group mb-2 mr-sm-2 col-4">
<button class="btn btn-primary btn-add input-group-prepend"><span class="fa fa-plus"></span></button>
<input type="number" class="form-control" name="numberOfNodes" step="1"/>
</div>
<input type="range" class="form-control col-4" name="betweenNodesInLayer" min="0" max="100" step="1" value="20" style="position: relative; top: -4px;">
</div>
</div>
<hr>
<button type="button" class="btn btn-sm btn-secondary" id="newRandomWeights">New Random Weights</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="count"><span></span><a style="font-size: 1rem" href="about.html">About</a></div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script type="text/javascript" src="https://d3js.org/d3.v5.min.js"></script>
<script type="text/javascript" src="util.js"></script>
<script type="text/javascript" src="FCNN.js"></script>
<script type="text/javascript">
fcnn = FCNN();
function restart() {
architecture = $('#architecture').find('input[name="numberOfNodes"]').map((i,el) => $(el).val()).get().filter(input => $.isNumeric(input)).map(s => parseInt(s));
betweenNodesInLayer = $('#architecture').find('input[name="betweenNodesInLayer"]').map((i,el) => parseFloat($(el).val())).get();
fcnn.redraw({'architecture_':architecture});
fcnn.redistribute({'betweenNodesInLayer_':betweenNodesInLayer});
$('#count span:first').text(fcnn.graph.nodes.length+" nodes, "+fcnn.graph.links.length+" edges you don't need to draw yourself! ")
}
restart();
/////////////////////////////////////////////////////////////////////////////
/////// Select Styling ///////
/////////////////////////////////////////////////////////////////////////////
$("#edgeWidthProportional").change( function() { fcnn.style({'edgeWidthProportional_': this.checked}) });
$("#edgeWidth").change( function() { fcnn.style({'edgeWidth_': parseFloat(this.value)}) });
$("#edgeOpacityProportional").change( function() { fcnn.style({'edgeOpacityProportional_': this.checked});
if (this.checked) { $("#edgeOpacity").prop('disabled', true); }
else { $("#edgeOpacity").prop('disabled', false); }
});
$("#edgeOpacity").change( function() { fcnn.style({'edgeOpacity_': parseFloat(this.value)}) });
$("#negativeEdgeColor").change( function() { fcnn.style({'negativeEdgeColor_': this.value}) });
$("#positiveEdgeColor").change( function() { fcnn.style({'positiveEdgeColor_': this.value}) });
$("#edgeColorProportional").change( function() { fcnn.style({'edgeColorProportional_': this.checked}) });
$("#defaultEdgeColor").change( function() { fcnn.style({'defaultEdgeColor_': this.value}) });
$("#nodeDiameter").change( function() { fcnn.style({'nodeDiameter_': parseFloat(this.value)}) });
$("#nodeColor").change( function() { fcnn.style({'nodeColor_': this.value}) });
$("#nodeBorderColor").change( function() { fcnn.style({'nodeBorderColor_': this.value}) });
$("#betweenLayers").change( function() { fcnn.redistribute({'betweenLayers_': parseFloat(this.value)}) });
$('#nnDirection input:radio').change( function() { fcnn.redistribute({'nnDirection_': this.value}) });
$("#showBias").change( function() { fcnn.redraw({'showBias_': this.checked}); fcnn.redistribute(); });
$("#showLabels").change( function() { fcnn.redraw({'showLabels_': this.checked}) });
$("#showArrowheads").change( function() { fcnn.style({'showArrowheads_': this.checked}) });
$("#arrowhead input:radio").change( function() { fcnn.style({'arrowheadStyle_': this.value}) });
$("#bezierCurves").change( function() { fcnn.redistribute({'bezierCurves_': this.checked}) });
/////////////////////////////////////////////////////////////////////////////
/////// Select Architecture ///////
/////////////////////////////////////////////////////////////////////////////
$(document).on('click', '.btn-add', function(e) {
e.preventDefault();
var controlForm = $('#architecture');
var currentEntry = $(this).parents('.entry:first');
var newEntry = $(currentEntry.clone()).appendTo(controlForm);
newEntry.find('input[name="numberOfNodes"]').val('');
controlForm.find('.entry:not(:last) .btn-add')
.removeClass('btn-add').addClass('btn-remove')
.removeClass('btn-primary').addClass('btn-secondary')
.html('<span class="fa fa-minus"></span>');
restart();
});
$(document).on('click', '.btn-remove', function(e) {
e.preventDefault();
$(this).parents('.entry:first').remove();
restart();
return false;
});
$(document).on('change', "input[name='numberOfNodes']", restart);
$(document).on('change', "input[name='betweenNodesInLayer']", restart); // fix this so we only redistribute
$(document).on('click', '#newRandomWeights', function() {
link = fcnn.link.data([]);
fcnn.link.exit().remove();
restart();
});
d3.select("#download").on("click", function() {
// ga('send', 'event', 'downloadSVG', 'FCNN');
d3.select(this)
.attr("href", 'data:application/octet-stream;base64,' + btoa(unescape(encodeURIComponent(d3.select("#graph-container").html()))))
.attr("download", "nn.svg")
})
</script>
</body>
</html>