forked from cvalenzuela/sfpc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (37 loc) · 1.06 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0>
<style>
body{
padding: 1rem;
margin: 0;
}
</style>
<!-- Import p5, p5.dom and p5.sound -->
<!-- This is not a requirement to use ML5, but will make things faster and easier -->
<script src="libraries/p5.min.js"></script>
<script src="libraries/p5.dom.min.js"></script>
<script src="libraries/p5.sound.min.js"></script>
<!-- Import ML5. There is not need to import deeplearn.js separately -->
<script src="libraries/ml5.min.js"></script>
</head>
<body>
<!--
This will be our main sketch to run.
You can replace the src attribute with another
file inside the /scripts folder.
-->
<script src="scripts/00_p5template.js"></script>
<!--
Sample Sketches:
- 00_p5template.js
- 01_p5simpleExample.js
- 02_imageClassification.js
- 03_videoClassification.js
- 04_word2vec.js
- 05_KNNClassifier.js
- 06_KNNClassifier_with_sound_image
-->
</body>
</html>