-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (28 loc) · 944 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Audio Slider</title>
<meta charset="utf-8"/>
<script src = "scripts/tf.min.js"></script>
<script src = "scripts/speech-commands.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles/style.css">
</head>
<body>
<!-- UI -->
<div id="information">
</div>
<div id="buttons">
<button id="left" onmousedown="collect(0)" onmouseup="collect(null)">Left</button>
<button id="right" onmousedown="collect(1)" onmouseup="collect(null)">Right</button>
<button id="noise" onmousedown="collect(2)" onmouseup="collect(null)">Noise</button>
<button id="train" onclick="train()">Train</button>
<button id="listen" onclick="listen()">Listen</button>
</div>
<div id="slider">
<input type="range" id="output" min="0" max="10" step="0.01">
</div>
<!-- Output -->
<div id="console"></div>
<script src = "scripts/index.js"></script>
</body>
</html>