-
Notifications
You must be signed in to change notification settings - Fork 117
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (51 loc) · 1.74 KB
/
Copy pathindex.html
File metadata and controls
51 lines (51 loc) · 1.74 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Algorithmia Handwriting Recognition Demo</title>
<link rel="shortcut icon" href="<%= slug %>/public/images/favicon-bw.png" type="image/png">
<link rel="stylesheet" media="screen" href="<%= slug %>/public/css/algo.min.css">
<link rel="stylesheet" media="screen" href="<%= slug %>/public/css/bootstrap3.min.css">
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<script src="<%= slug %>/public/js/algorithmia.js"></script>
<script src="<%= slug %>/public/js/main.js" type="text/javascript"></script>
<style>
table {
border-collapse: separate;
border-spacing: 2px;
}
table th {
padding: 4px;
padding-right: 16px;
}
table td {
font-size: 26pt;
padding: 4px;
}
</style>
</head>
<body style="background-color: white; margin: 10px;">
<div>
<div>Draw a single-digit number:</div>
<canvas id="canvas" width="300" height="300" style="border:2px solid; background-color: white;">
Your browser does not support canvas element.
</canvas>
<canvas id="miniCanvas" width="28" height="28" style="border:1px solid; background-color: white; visibility: hidden;"></canvas>
<div>
<input type="button" value="Classify" id="btn" size="30" onclick="classify()" class="btn btn-primary btn-wide btn-lg">
<input type="button" value="Clear" id="clr" size="23" onclick="erase()" class="btn btn-default btn-wide btn-lg">
<span class="aspinner algo-spinner"></span>
</div>
<!-- <div id="demo-status"></div> -->
<table>
<tr>
<th>Mahout</th>
<th>WEKA</th>
</tr>
<tr>
<td id="mahout-out"></td>
<td id="weka-out"></td>
</tr>
</table>
</div>
</body>
</html>