Spaces:
Running
Running
Julien Chaumond
commited on
Commit
·
542367d
1
Parent(s):
7fe1055
Footer
Browse files- index.html +16 -0
- less/style.less +20 -0
index.html
CHANGED
@@ -43,6 +43,22 @@
|
|
43 |
<div class="container"></div>
|
44 |
</div>
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
<script src="dist/script.js"></script>
|
47 |
<script>
|
48 |
(function() {
|
|
|
43 |
<div class="container"></div>
|
44 |
</div>
|
45 |
|
46 |
+
<div class="footer">
|
47 |
+
<div class="footline"></div>
|
48 |
+
<div class="description">
|
49 |
+
<p>This is a demo of our State-of-the-art neural coreference resolution system.
|
50 |
+
The open source code for <a target="_blank" href="https://github.com/huggingface/neuralcoref">Neural coref</a>,
|
51 |
+
our coreference system based on neural nets and spaCy, is <a target="_blank" href="https://github.com/huggingface/neuralcoref">on Github</a>,
|
52 |
+
and we explain how it works in <a target="_blank" href="https://medium.com/p/3302365dcf30">this Medium publication</a>.</p>
|
53 |
+
<p>In short, coreference is the fact that two or more expressions in a text – like pronouns or nouns – link to the same person or thing.
|
54 |
+
It is a classical Natural language processing task, that has seen a revival of interest in the past
|
55 |
+
two years as several research groups applied cutting-edge deep-learning and reinforcement-learning techniques to it.
|
56 |
+
It is also one of the key building blocks to building conversational Artificial intelligences.
|
57 |
+
If you like this demo please <a target="_blank" href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fhuggingface.co%2Fcoref&via=julien_c%20%40betaworks">tweet about it</a> 👍.</p>
|
58 |
+
<p><a href="https://twitter.com/share" class="twitter-share-button" data-show-count="false" data-via="julien_c @betaworks">Tweet</a><script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script></p>
|
59 |
+
</div>
|
60 |
+
</div>
|
61 |
+
|
62 |
<script src="dist/script.js"></script>
|
63 |
<script>
|
64 |
(function() {
|
less/style.less
CHANGED
@@ -152,6 +152,26 @@ body.debug {
|
|
152 |
}
|
153 |
}
|
154 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
/**
|
156 |
* Elements from Displacy
|
157 |
*/
|
|
|
152 |
}
|
153 |
}
|
154 |
|
155 |
+
/**
|
156 |
+
* Footer
|
157 |
+
*/
|
158 |
+
|
159 |
+
.footer {
|
160 |
+
padding: 18px 18px;
|
161 |
+
color: #2f2f2f;
|
162 |
+
font-size: 14px;
|
163 |
+
max-width: 700px;
|
164 |
+
line-height: 1.3;
|
165 |
+
a {
|
166 |
+
color: inherit;
|
167 |
+
}
|
168 |
+
.footline {
|
169 |
+
height: 2px;
|
170 |
+
width: 200px;
|
171 |
+
background-color: #696969;
|
172 |
+
}
|
173 |
+
}
|
174 |
+
|
175 |
/**
|
176 |
* Elements from Displacy
|
177 |
*/
|