-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (48 loc) · 1.64 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
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Digit Classifier</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="statistics-sidebar">
<h3>Statistics</h3>
<table id="stats-table">
<thead>
<tr>
<th>Digit</th>
<th>Correct</th>
<th>Incorrect</th>
</tr>
</thead>
<tbody>
<!-- add later -->
</tbody>
</table>
</div>
<div class="main-content">
<h2>Draw a digit (0-9) and click classify</h2>
<form id="canvas-form">
<canvas id="draw-canvas" width="280" height="280"></canvas>
<p id="prediction-result"></p>
<input type="number" id="real-label-input" placeholder="Enter real digit" min="0" max="9">
<div id="button-container">
<button type="button" id="clear-btn">Clear</button>
<button type="submit" id="classify-btn">Classify</button>
</div>
</form>
<button id="mode-btn" type="button">Switch to ROI</button>
<button id="list-images-btn">View Database</button>
<button id="clear-db-btn">Clear Database</button>
<div id="image-list"></div>
</div>
<div class="github-link">
<a href="https://github.com/napronald/DigitPro99" target="_blank">
<img src="icon.png" alt="GitHub" />
</a>
</div>
<script src="script.js" type="module" defer></script>
</body>
</html>