-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (25 loc) · 969 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
32
<!--
Copyright (c) 2018 ml5
This software is released under the MIT License.
https://opensource.org/licenses/MIT
-->
<html>
<head>
<meta charset="UTF-8">
<title>Image classification using MobileNet and p5.js</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.6.0/addons/p5.dom.min.js"></script>
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js" type="text/javascript"></script>
</head>
<body>
<h1>Image classification using MobileNet and p5.js</h1>
<p id="status">Loading Model...</p>
<p id="status2">JSON Data...</p>
<p id="file">Datei loading...</p>
<p id="pfad">Pfad loading...</p>
<p id="anzahl">Anzahl loading...</p>
<p id="bild"> </p>
<p>The MobileNet model labeled this as <span id="result">...</span>, with a confidence of <span id="probability">...</span>.</p>
<script src="sketch.js"></script>
</body>
</html>