forked from dgschwend/netscope
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickstart.html
101 lines (101 loc) · 5.21 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Netscope Visualization Tool for Convolutional Neural Networks">
<meta name="keywords" content="netscope, CNN, visualization, tool, neural network, convnet, graph, deep learning">
<meta name="author" content="dgschwend">
<title>Quick Start — Netscope CNN Analyzer</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 CNN Analyzer</h1>
<p>A web-based tool for visualizing and analyzing convolutional neural network architectures (or technically, any directed acyclic graph).
Currently supports <a href="http://caffe.berkeleyvision.org/">Caffe</a>'s prototxt format.</p>
<p>Basis by <a href="https://github.com/ethereon">ethereon</a>. Extended for CNN Analysis by <a href="https://github.com/dgschwend">dgschwend</a>.</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://dgschwend.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/zynqnet"><img src="https://assets-cdn.github.com/images/icons/emoji/unicode/1f195.png" width=32 height=32/> ZynqNet CNN</a>
<div class="authors">David Gschwend (see <a href="https://www.github.com/dgschwend/zynqnet">the master thesis repository</a>)</div>
</div>
<div class="preset">
<a href="./#/preset/YOLO">YOLO</a>
<div class="authors">Joseph Redmon, Ali Farhadi</div>
</div>
<div class="preset">
<a href="./#/preset/squeezenet">SqueezeNet</a>
<div class="authors">Forrest Iandola, Matthew Moskewicz, Khalid Ashraf, Song Han, William Dally, Kurt Keutzer</div>
</div>
<div class="preset">
<a href="./#/preset/squeezenet_v11">SqueezeNet v1.1</a>
<div class="authors">Forrest Iandola, Matthew Moskewicz, Khalid Ashraf, Song Han, William Dally, Kurt Keutzer</div>
</div>
<div class="preset">
<a href="./#/preset/inceptionv4">Inception v4</a>
<div class="authors">Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, Zbigniew Wojna</div>
</div>
<div class="preset">
<a href="./#/preset/inceptionv4_resnet">Inception-ResNet-v2</a>
<div class="authors">Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, Zbigniew Wojna</div>
</div>
<div class="preset">
<a href="./#/preset/inceptionv3">Inception v3</a>
<div class="authors">Christian Szegedy, Vincent Vanhoucke, Sergey Ioffe, Jonathon Shlens, Zbigniew Wojna</div>
</div>
<div class="preset">
<div class="preset">
<a href="./#/preset/resnet-50">ResNet-50</a>
<div class="authors">Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun</div>
</div>
<div class="preset">
<a href="./#/preset/resnet-50">ResNet-152</a>
<div class="authors">Kaiming He, Xiangyu Zhang, Shaoqing Ren, Jian Sun</div>
</div>
<div class="preset">
<a href="./#/preset/alexnet">AlexNet</a>
<div class="authors">Alex Krizhevsky, Ilya Sutskever, Geoffry 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-16s">FCN-16s: Fully Convolutional Network — Two Stream</a>
<div class="authors">Jonathan Long, et. al</div>
</div>
<div class="preset">
<!-- <a href="./#/preset/fcn-8s-pascal">FCN-8s: 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>