-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindexOriginal.html
55 lines (46 loc) · 1.66 KB
/
indexOriginal.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 lang="en">
<head>
<title>Hello!</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- import the webpage's stylesheet -->
<link rel="stylesheet" href="style.css">
<!--
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/speech-commands"></script>
-->
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@1.1.2"> </script>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/speech-commands@0.3.6"> </script>
<!-- import the webpage's javascript file -->
<script src="index.js" defer></script>
</head>
<body>
<div id="container" class="container before-load">
<div>
<h1>
Hi there! <span class="instructions">
I am able to understand four speech commands. Up, down, left and right.</span>
</h1>
</div>
<div id="results">
<div id="last-detected">
🎤
</div>
</div>
<div id="controls">
<button id="start">
Start!
</button>
<button id="stop" disabled="true">
Stop!
</button>
</div>
</div>
<!-- include the Glitch button to show what the webpage is about and
to make it easier for folks to view source and remix -->
<div class="glitchButton" style="position:fixed;top:20px;right:20px;"></div>
<!-- <script src="https://button.glitch.me/button.js"></script> -->
</body>
</html>