forked from ethereon/netscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickstart.html
55 lines (55 loc) · 2.53 KB
/
quickstart.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Quick Start — Netscope</title>
<link href='http://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="assets/css/doc.css">
</head>
<body>
<div class="container">
<h1>Netscope</h1>
<p>A web-based tool for visualizing neural network architectures (or technically, any directed acyclic graph). It currently supports <a href="http://caffe.berkeleyvision.org/">Caffe</a>'s prototxt format.</p>
</div>
<div class="container">
<h2>Gist Support</h2>
<p>If your <code>.prototxt</code> file is part of a GitHub Gist, you can visualize it by visiting this URL:</p>
<div class="code-box">http://ethereon.github.io/netscope/#/gist/<span class="highlight">your-gist-id</span></div>
<p>The Gist ID is the numeric suffix in the Gist's URL.</p>
<a href="./#/gist/e65799e70358c6782b1b" class="btn">View Example</a>
</div>
<div class="container">
<h2>Editor</h2>
<p>You can use <a href="./#/editor">the inline editor</a> to enter your network definition (currently limited to valid Caffe's prototext) and visualize the network.</p>
<p>Press <code>Shift+Enter</code> in the editor to render your network.</p>
<a href="./#/editor" class="btn">Launch Editor</a>
</div>
<div class="container">
<h2>Presets</h2>
<div class="preset">
<a href="./#/preset/alexnet">AlexNet</a>
<div class="authors">Alex Krizhevsky, Ilya Sutskever, Geoffrey Hinton</div>
</div>
<div class="preset">
<a href="./#/preset/caffenet">CaffeNet</a>
<div class="authors">Yangqing Jia, Evan Shelhamer, et. al.</div>
</div>
<div class="preset">
<a href="./#/preset/fcn-8s-pascal">Fully Convolutional Network — Three Stream</a>
<div class="authors">Jonathan Long, Evan Shelhamer, Trevor Darrell</div>
</div>
<div class="preset">
<a href="./#/preset/googlenet">GoogLeNet</a>
<div class="authors">Christian Szegedy, et. al.</div>
</div>
<div class="preset">
<a href="./#/preset/nin">Network in Network</a>
<div class="authors">Min Lin, Qiang Chen, Shuicheng Yan</div>
</div>
<div class="preset">
<a href="./#/preset/vgg-16">VGG 16 Layers</a>
<div class="authors">Karen Simonyan, Andrew Zisserman</div>
</div>
</div>
</body>
</html>