-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
45 lines (37 loc) · 1.91 KB
/
main.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
<html lang="en">
<head>
<meta charset="utf-8">
<title>Learning Hierarchies of Concepts</title>
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<!-- D3/Queue/JQuery -->
<!-- TODO: get rid of JQuery -->
<script type="text/javascript" src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css">
<script src="//netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js"></script>
<!-- Swiper -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/Swiper/3.0.1/css/swiper.min.css">
<script src="//cdnjs.cloudflare.com/ajax/libs/Swiper/3.0.1/js/swiper.min.js"></script>
<!-- Custom -->
<link rel="stylesheet" href="main_style.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="jumbotron">
<h1>Interactive Learning for Hierarchies of Concepts</h1>
<p>We built a visualization system for an algorithm which learns hierarchies of concepts by crowdsourcing answers to simple questions such as "Is <b>orange</b> a type of <b>citrus fruit</b>?".</p>
<ul>
<li><a href="https://www.cs.washington.edu/node/12083">Building Hierarchies of Concepts via Crowdsourcing</a></li>
</ul>
<p>Before running the algorithm interactively, click the button below to see a demonstration of our visualization tool on a pre-trained hierarchy.</p>
<button class="btn btn-primary btn-lg" role="button" id="demoBTN">Go to Demo</button>
</div>
</div>
<div class="arrange-vertically" id="timeline"></div>
</div>
<script src="main.js" type="text/javascript"></script>
</body>
</html>