-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
44 lines (41 loc) · 1.67 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>The Ghost in the Machine</title>
<link rel="stylesheet" href="word2vec.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.5.0/pure-min.css">
</head>
<body>
<div class="title_bar">
<div class="title">
<h1 class="intro">The Ghost in the Machine</h1>
<p>Teaching computers to understand language using artificial intelligence.</p>
</div>
</div>
<div class="wrapper">
<div class="centerer">
<div id="analogy">
<div class="instructions">
Enter the beginning to an analogy in the first three fields and click submit. Using AI, the server will attempt to solve the analogy.
</div>
<form name="analogy_form" id="analogy_form" class="pure-form">
<input type="text" name="first" id="first" class="analogy_input">
is to
<input type="text" name="isto" id="isto" class="analogy_input">
as
<input type="text" name="second" id="second" class="analogy_input">
is to
<input type="text" name="result" id="result" class="analogy_input" disabled>
<br/>
<input id="submit_button" value="Submit" type="submit">
</form>
</div>
<h3>Artificial neural network</h3>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/Neural_network.svg/2000px-Neural_network.svg.png" width="60%"/>
</div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script src="word2vec.js"></script>
</body>
</html>