-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcaffe-editor.html
More file actions
31 lines (31 loc) · 1.27 KB
/
caffe-editor.html
File metadata and controls
31 lines (31 loc) · 1.27 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Caffe Editor</title>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/raphael/raphael-min.js"></script>
<!-- Polymer -->
<!-- 1. Load platform support before any code that touches the DOM. -->
<script src="bower_components/webcomponentsjs/webcomponents.min.js"></script>
<!-- 2. Load the component using an HTML Import -->
<!-- <link rel="import" href="elements/my-element.html">-->
<link rel="stylesheet" type="text/css" href="css/editor.css" />
</head>
<body>
<h1>Caffe Editor</h1>
<div id="editor" class="editor-container">
<!-- order of divs matters here -->
<div class="net-prototxt-container">
<textarea id="net-prototxt" style="margin-left: auto; margin-right: auto; display: block" rows="50" cols="80"></textarea>
</div>
<div id="svg-container" class="net-view-container"></div>
</div>
<script src="js/math.js"></script>
<script src="js/node-deps.js"></script>
<script src="js/caffe-layer-view.js"></script>
<script src="js/caffe-layer.js"></script>
<script src="js/caffe-net.js"></script>
<script src="js/caffe-net-view.js"></script>
<script src="js/caffe-editor.js"></script>
</body>
</html>