forked from ICMLRecommender/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added the finished about page content ICMLRecommender#72
- Loading branch information
LazarValkov
committed
Aug 6, 2017
1 parent
ed27177
commit f809323
Showing
1 changed file
with
82 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ | |
.person-link { | ||
margin-right: 8px; | ||
color: #C80000; | ||
border-bottom: 1px solid #C80000; | ||
/*border-bottom: 1px solid #C80000;*/ | ||
display: inline-block; | ||
} | ||
@media(max-width: 360px) { | ||
|
@@ -100,30 +100,94 @@ | |
<div class="header"></div> | ||
<paper-card class="content"> | ||
<div class="inner"> | ||
<p> | ||
<b>Note:</b> This app is in pre-release mode for ICML 2017. Please send feedback and bug reports to <a href="mailto:[email protected]" target="_top">[email protected]</a> or file an issue on our <a target="_blank" href="https://github.com/ICMLRecommender/frontend/issues">github project page</a>. | ||
</p> | ||
<h1>What is this app?</h1> | ||
<p> | ||
This app helps navigate the rich program of ICML 2017. The app enables users to quickly find interesting papers, publicly comment them, register their interest using 'like' and 'bookmark', and browse what others are interested in. In addition, users' preferences feed a personalized paper recommendation engine. | ||
<br><br> | ||
This app helps navigate the rich program of ICML 2017. The app provides an easily | ||
navigable schedule, enables users to quickly find interesting papers, publicly | ||
comment them, register their interest using 'like' and 'bookmark', and browse what | ||
others are interested in. In addition, users' preferences feed a personalized paper | ||
recommendation engine. | ||
<!-- <br><br> | ||
The recommendation engine is based on the <a href="http://www.cs.columbia.edu/~blei/papers/WangBlei2011.pdf" target="_blank">collaborative topic regression (CTR) model</a> of C. Wang and D. Blei. | ||
</p> | ||
</p>--> | ||
<hr/> | ||
<h1>Bookmarks and Likes</h1> | ||
<p>Papers you choose to bookmark or like are made available through your "Library" page.</p> | ||
<p>The difference between bookmarks and likes is that liked papers are fed into the recommendation engine.</p> | ||
<hr/> | ||
<h1>Who built this?</h1> | ||
<h1>Recommendations</h1> | ||
<p>Recommendations are available through the "Feed" page and are updated every two minutes. On that page recommended papers are preceded by trending papers which shows some of the most popular papers.</p> | ||
<p>The recommendation engine is based on the <a href="http://www.cs.columbia.edu/~blei/papers/WangBlei2011.pdf" target="_blank">collaborative topic regression (CTR) model</a> of C. Wang and D. Blei.</p> | ||
<hr/> | ||
<h1>Why are we building it?</h1> | ||
<p>There are a few reasons one of which is that it can be challenging to keep up with all of the great work published at conferences. We believe that an easy to use app and a good recommendation engine can help surface interesting papers.</p> | ||
<p>Moreover, we built this app as a service to the community, we will open source the app. We would like others to use and even build on it. We believe that the app can also be used as a test bed for recommender engines. As such the app keeps detailed (and anonymous) logs for future offline analysis and model comparisons.</p> | ||
<hr/> | ||
<h1>Who is involved?</h1> | ||
<p>The app was designed and built by a team of machine learning students and researchers spread across England, France, and Canada.</p> | ||
</div> | ||
<div class="team"> | ||
<template is="dom-repeat" items="[[team]]" as="person"> | ||
<div class="person"> | ||
<div class="picture"></div> | ||
<div class="details"> | ||
<div class="name">[[person.name]]</div> | ||
<div class="affiliation">[[person.affiliation]]</div> | ||
<div class="links"> | ||
<a class="person-link">Website</a> | ||
<a class="person-link">Twitter</a> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<!--<div class="picture"></div>--> | ||
<div class="details"> | ||
<div class="name">Adrient Todeschini</div> | ||
<div class="affiliation">Scorelab.io</div> | ||
<div class="links"> | ||
<a class="person-link" target="_blank" href="http://scorelab.io/">Website</a> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">Hoai Phuoc Truong</div> | ||
<div class="affiliation">McGill University</div> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">James Ravenscroft</div> | ||
<div class="affiliation">University of Warwick</div> | ||
</div> | ||
</template> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">Laurent Charlin</div> | ||
<div class="affiliation">Université de Montréal (HEC)</div> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">Lazar Valkov</div> | ||
<div class="affiliation">University of Edinburgh</div> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">Maria Liakata</div> | ||
<div class="affiliation">University of Warwick, Alan Turing Institute</div> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">Taimur Abdaal</div> | ||
<div class="affiliation">University of Oxford</div> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">Valerio Perrone</div> | ||
<div class="affiliation">University of Warwick</div> | ||
</div> | ||
</div> | ||
<div class="person"> | ||
<div class="details"> | ||
<div class="name">Yee Whye Teh</div> | ||
<div class="affiliation">University of Oxford, DeepMind, Alan Turing Institute</div> | ||
</div> | ||
</div> | ||
</div> | ||
</paper-card> | ||
</template> | ||
|
@@ -141,7 +205,7 @@ <h1>Who built this?</h1> | |
value: [ | ||
{ | ||
'name': 'Adrien Todeschini', | ||
'affiliation': '' | ||
'affiliation': 'Scorelab.io' | ||
}, | ||
{ | ||
'name': 'Hoai Phuoc Truong', | ||
|