-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.55 KB
/
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
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digit Classification</title>
<link rel="stylesheet" href="style.css" />
<link
rel="stylesheet"
href="https://bootswatch.com/5/lux/bootstrap.min.css"
/>
</head>
<body>
<!-- <script src="https://unpkg.com/ml5@latest/dist/ml5.min.js"></script> -->
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/p5.js"></script>
<script src="script.js"></script>
<!-- <script src="create_data.js"></script> -->
<!-- <script src="trainModel.js"></script> -->
<div class="classes d-flex p-2 py-3 justify-content-around">
<div class="div_0 p-2 px-4 border rounded">0</div>
<div class="div_1 p-2 px-4 border rounded">1</div>
<div class="div_2 p-2 px-4 border rounded">2</div>
<div class="div_3 p-2 px-4 border rounded">3</div>
<div class="div_4 p-2 px-4 border rounded">4</div>
</div>
<div class="classes d-flex p-2 py-3 justify-content-around">
<div class="div_5 p-2 px-4 border rounded">5</div>
<div class="div_6 p-2 px-4 border rounded">6</div>
<div class="div_7 p-2 px-4 border rounded">7</div>
<div class="div_8 p-2 px-4 border rounded">8</div>
<div class="div_9 p-2 px-4 border rounded">9</div>
</div>
<!-- <p class="my-3 lead">Press C to clear screen.</p> -->
</body>
</html>