-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (43 loc) · 1.52 KB
/
index.html
File metadata and controls
51 lines (43 loc) · 1.52 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>TensorFlow.js Tutorial</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Import TensorFlow.js -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.0.0/dist/tf.min.js"></script>
<!-- Import tfjs-vis -->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs-vis@1.0.2/dist/tfjs-vis.umd.min.js"></script>
<!-- Import the main script file -->
<script src="script.js"></script>
<!-- Added Materialize CSS CDN -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/css/materialize.min.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/1.0.0/js/materialize.min.js"></script>
</head>
<body>
<table class="highlight">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Test</th>
<th scope="col">Button</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Predictions for 2d data </td>
<td><button class="btn btn-success" onclick="run()">Run</button></td>
</tr>
<!--<tr>
<th scope="row">2</th>
<td>Digit recognition using CNN</td>
<td><button class="btn btn-success" onclick="run_digit()">Run</button></td>
</tr>-->
</tbody>
</table>
<section style="text-align: center;">NOTE : it will take 3 to 5 seconds</section>
</body>
</html>