-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 861 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 861 Bytes
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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<script defer src="./@tensorflow/tfjs/dist/tf.js"></script>
<!-- <script defer src="./@tensorflow/tfjs-node"></script> -->
<script defer src="./mnist.js"></script>
</head>
<body>
<div>Teachable Machine - Handwritten digit recognition model</div>
<h1 id="info">Waiting for training model.</h1>
<button type="button" id="train">Train</button>
<button type="button" id="run">Run</button>
<button type="button" id="save">Save</button>
<br>
<progress value="0" max="100" style="width:50%"></progress>
<br>
<div>
<img id="image" />
<canvas id="canvas" width="28" height="28" ></canvas>
<p id="prediction" style="font-size:30px">0</p>
</div>
<script src="index.js"></script>
</body>
</html>