Skip to content

Commit

Permalink
updated the graphics and stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
Maarten Sap committed May 23, 2018
1 parent 200d192 commit 1fb9f01
Show file tree
Hide file tree
Showing 6 changed files with 896 additions and 127 deletions.
Binary file added docs/graphics/m2vFigure1_v2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
818 changes: 818 additions & 0 deletions docs/graphics/m2vFigure1_v2.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
78 changes: 77 additions & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
@@ -1 +1,77 @@
Event2mind hello world!
<!DOCTYPE html>
<head>
<title>Event2Mind: Commonsense Inference on Events, Intents and Reactions</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">

<script type="text/javascript" src="js/clientside.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/MathJax.js?config=TeX-MML-AM_CHTML'></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js" integrity="sha384-smHYKdLADwkXOn1EmN1qk/HfnUcbVRZyYmZ4qpPea6sjB/pTJ0euyQp0Mk8ck+5T" crossorigin="anonymous"></script>
</head>

<body>
<div class="container content-left">
<div class="row" style="margin-top: 20px;">
<div class="col-sm-10">
<h1 class="">Event2Mind<small class="text-muted"><br>Commonsense Inference on Events, Intents and Reactions</small></h1>
<p><em>Quick links:</em>&nbsp;
<a href="https://homes.cs.washington.edu/~msap/pdfs/rashkin2018event2mind.pdf">[paper]</a>
&nbsp;
<a href="data/event2mind.zip">[download dataset]</a>
&nbsp;
<a href="" data-target="#contactUs" data-toggle="collapse" onclick="return false;">[contact us]</a>
</p>
<div id="contactUs" class="collapse">
<p>
For research or press inquiries, contact <a href="hrashkin@cs.washington.edu">Hannah</a> and/or <a href="mailto:msap@cs.washington.edu">Maarten</a>.
</p>
<hr>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-9 col-md-7">
<div class="row">
<div class="col-sm-12">
<div class="alert alert-secondary" role="alert">This website is still under construction, check back soon...</div>
</div>
</div>
</div>
<div class="col-sm-3 col-md-3" style="margin-top: 20px;">
<figure>
<div class="img-div">
<img class="figure-img img-fluid rounded" src="graphics/m2vFigure1_v2.png" alt="see caption" style="width: 100%;max-width:none;">
<img class="hoverlarge" src="graphics/m2vFigure1_v2.png" alt="see caption" style="left:-120px;top:-100px; border-radius: 5%;">
<figcaption class="figure-caption">
Examples of commonsense inference on mental states of event participants. In the third example event, common sense tells
us that Y is likely to feel betrayed as a result of X reading their diary.
</figcaption>
</div>
</figure>
<hr>
<figure>
<div class="img-div">
<img class="figure-img img-fluid rounded" src="graphics/mind2vecMovies_v3 (birnn-seq).png" alt="see caption" style="width: 100%;max-width:none;">
<img class="hoverlarge" src="graphics/mind2vecMovies_v3 (birnn-seq).png" alt="see caption" style="left: -120px; top: 250px; border-radius: 5%;">
<figcaption class="figure-caption">
Two scene description snippets from <em>Juno</em> (2007, top) and <em>Pretty Woman</em> (1990, bottom).
</figcaption>
</div>
</figure>
</div>
</div>
<hr>
<div class="row" style="margin-bottom: 100px;">
<div class="col-sm-12">
<em>Read our paper for more:</em>
<br>
Hannah Rashkin, Maarten Sap, Emily Allaway, Noah A. Smith, &amp; Yejin Choi (2018).<br>
<strong>Event2Mind: Commonsense Inference on Events, Intents and Reactions</strong>. <em>ACL</em>
<a href="https://homes.cs.washington.edu/~msap/pdfs/rashkin2018event2mind.pdf">[view pdf]</a>
</div>
</div>
</div>
</body>
81 changes: 0 additions & 81 deletions docs/index.php

This file was deleted.

46 changes: 1 addition & 45 deletions docs/js/clientside.js
Original file line number Diff line number Diff line change
@@ -1,45 +1 @@
window.onload = getReady;
var goal,raised_dollars, raised_pct, sponsors, school, pct_funded, pct_raised, pct_school,remaining;

function prettyNumber(x){
var pIx;
x = x.toFixed(2);
pIx = x.indexOf(".");
if (x.substring(pIx+1).length > 2)
x = x.substring(0,pIx+1) + x.substring(pIx+1,pIx+3);
return x;
}

function getReady(){
/* Update the numbers */

goal = document.getElementById("goal");
raised_dollars = document.getElementById("raised_dollars");
raised_pct = document.getElementById("raised_pct");
sponsors = document.getElementById("raised_sponsors");
school = document.getElementById("progressSchool");
remaining = document.getElementById("remaining");

if (goal !== null)
goal.innerHTML = "$"+funds["needed"];
if (raised_dollars !== null)
raised_dollars.innerHTML = "$" + prettyNumber(funds["raised"]);
if (sponsors !== null)
sponsors.innerHTML = funds["sponsors"];
if (remaining !== null)
remaining.innerHTML = "$"+ prettyNumber(funds["needed"] - funds["raised"] - funds["school"])

pct_funded = 100 * (funds["raised"]+funds["school"]) / funds["needed"];

if (raised_pct !== null)
raised_pct.innerHTML = prettyNumber(pct_funded)+"%";

/* Update the progress bar */
pct_raised = prettyNumber(100 * funds["raised"] / funds["needed"]);
pct_school = prettyNumber(100 * funds["school"] / funds["needed"]);
document.getElementById("progress").style = "width: "+pct_raised+"%";
document.getElementById("progressSchool").style = "width: "+pct_school+"%";

/* Start countdown timer */
CountDownTimer(funds["deadline"], "countdown");
}
console.log("add to clientside.js!");

0 comments on commit 1fb9f01

Please sign in to comment.