-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.html
51 lines (46 loc) · 2.29 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
46
47
48
49
50
51
<html>
<link rel="stylesheet" type="text/css" href="index.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Open Review Explorer</title>
<h1>ICLR2018 Open Review Explorer</h1>
<div class="topnav" id="myTopnav">
<a class='active' href='#' onclick="window.location='index.html'+window.location.search">Home</a>
<a href='#' onclick="window.location='charts.html'+window.location.search">Charts</a>
<a href='#' onclick="window.location='about.html'+window.location.search">About</a>
<a style='float:right' href='?conf=iclr2017'>ICLR 2017</a>
<a style='float:right' href='?conf=iclr2018'>ICLR 2018</a>
<a style='float:right' href='?conf=iclr2019'>ICLR 2019</a>
<a style='float:right' href='?conf=iclr2020'>ICLR 2020</a>
</div>
<div id="demo">
Example Search Queries:
<br> cornell.edu (all papers with a Cornell author)
<br> Yoshua Bengio (all papers with Yoshua Bengio as a coauthor)
<br> wasserstein (all papers mentioning wasserstein)
<div id="users" class='table-responsive-vertical shadow-z-1'>
<input id='search' class="search form-style-6" placeholder="Filter through papers" />
<span id='search_results'></span>
<table id='table' class='table table-hover table-mc-light-blue'>
<thead>
<tr>
<th class="sort" data-sort="rank">Rank</th>
<th class="sort" data-sort="rating"> Rating </th>
<th class="sort" data-sort="title">Title</th>
<th class="sort" data-sort="rank">Ratings</th>
<th class="sort" data-sort="variance"> Variance </th>
<th class="sort" data-sort="rank">Confidences</th>
<th class="sort" data-sort="decision">Decision</th>
<th class="sort" data-sort="citations">Citations</th>
<th class="sort" data-sort="karpathy">karpathy</th>
</tr>
</thead>
<!-- IMPORTANT, class="list" have to be at tbody -->
<tbody class="list">
</tbody>
</table>
<button id='showAll' onclick="showAll()">Show All Papers</button>
</div>
</div>
<script src="js/list.js"></script>
<script src="js/index.js"></script>
</html>