-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (40 loc) · 1.5 KB
/
index.html
File metadata and controls
47 lines (40 loc) · 1.5 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
<!DOCTYPE html>
<html>
<!--
感謝您觀看這份程式碼
作品名稱: N/A
作者: 陳光穎 Bruce Chen
聯絡方式
Facebook連結: https://www.facebook.com/bruce.chen.372
LINE ID: brucechen0
最後修改日期: N/A
版本: N/A
發表於: https://brucechen034020.github.io/
程式碼尺度
N/A
作者註解:
1. 如本網頁有 bug 請用 Facebook(Messenger) 通知 Bruce Chen,謝謝。
2. 如有任何建議,請用 Facebook(Messenger) 通知 Bruce Chen,謝謝。
-->
<head>
<meta charset="utf-8" />
<title> Sentiment classifier </title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/p5.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.11/addons/p5.sound.min.js"></script>
<script src="main.js"></script>
<script src = "lexicon.js"> </script>
<script src = "hidden_1_layer.js"> </script>
<script src = "hidden_2_layer.js"> </script>
<script src = "hidden_3_layer.js"> </script>
<script src = "output_layer.js"> </script>
<script src = "girlfriend.js"> </script>
<script src="javascript-lemmatizer/bower_components/underscore/underscore.js"></script>
<script src="javascript-lemmatizer/js/lemmatizer.js"></script>
<script src = "LSTM/src/recurrent.js"> </script>
<style> body {padding: 0; margin: 0;} </style>
</head>
<body>
<p id = "loading"> Loading..... </p>
</body>
</html>