-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (47 loc) · 1.49 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
<html>
<head>
<meta charset="utf-8"/>
<style>
/* body {
position: relative
}
canvas {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
margin-left: auto;
margin-right: auto;
} */
</style>
</head>
<script type="module">
import init from './target/wasm.js'
init()
console.log("Loading WebAssembly...")
</script>
<ul>
<li>注意:読み込みに少し時間かかります</li>
<li>
操作方法
<ul>
<li>B : 推論を実行</li>
<li>C : 画面をクリア</li>
</ul>
</li>
<li>
識別できるクラスは現状次の3クラス.<br>
リンク先は学習に使用した<a href="https://quickdraw.withgoogle.com/data">Quick Draw Dataset</a>のスケッチの画像
<ul>
<li><a href="https://quickdraw.withgoogle.com/data/rabbit">Rabbit</a></li>
<li><a href="https://quickdraw.withgoogle.com/data/axe">Axe</a></li>
<li><a href="https://quickdraw.withgoogle.com/data/smiley_face">Smiley face</a></li>
</ul>
</li>
<li>テストデータの正解率は90%を超えましたが, 実際に書いたスケッチを入力すると
ミスが多く学習データのように丁寧に書く必要があります.
</li>
</ul>
</html>