2015-08-12 20:39:48 +00:00
|
|
|
extends ./outline.jade
|
|
|
|
|
2015-08-14 18:13:22 +00:00
|
|
|
include ./mixins.jade
|
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
// Notes
|
|
|
|
//
|
|
|
|
// 1. Where to put version notice? Should say something like
|
|
|
|
// 2015-08-12: v0.89
|
|
|
|
// and be a link
|
|
|
|
//
|
|
|
|
// Only needs to appear on home page.
|
|
|
|
|
|
|
|
|
2015-08-11 22:58:22 +00:00
|
|
|
- var slogan = "Build Tomorrow's Language Technologies"
|
2015-08-12 20:39:48 +00:00
|
|
|
- var tag_line = "spaCy – " + slogan
|
2015-08-11 22:58:22 +00:00
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
mixin lede
|
|
|
|
- var state_of_the_art = '<a href="#">state-of-the-art</a>'
|
|
|
|
- var a_minor_miracle = '<a href="">a minor miracle</a>'
|
|
|
|
- var great_documentation = '<a href="">great documentation</a>'
|
2015-08-14 18:13:22 +00:00
|
|
|
- var concise_API = '<a href="">concise API</a>'
|
2015-08-12 20:39:48 +00:00
|
|
|
|
2015-08-11 22:58:22 +00:00
|
|
|
p.
|
2015-08-12 20:39:48 +00:00
|
|
|
<a href="https://github.com/honnibal/spaCy"><strong>spaCy</strong></a> is a
|
2015-08-14 18:13:22 +00:00
|
|
|
library for industrial-strength natural language processing in Python and
|
|
|
|
Cython. It features !{state_of_the_art} speed and accuracy, a !{concise_API},
|
|
|
|
and <a href="#license">license terms</a> designed to get out of your way.
|
2015-08-12 20:39:48 +00:00
|
|
|
If you're a small company doing NLP, we want <strong>spaCy</strong> to seem
|
|
|
|
like !{a_minor_miracle}.
|
2015-08-11 22:58:22 +00:00
|
|
|
|
|
|
|
|
2015-08-11 22:59:48 +00:00
|
|
|
mixin comparison(name)
|
|
|
|
details
|
|
|
|
summary
|
2015-08-12 20:39:48 +00:00
|
|
|
h4= name
|
2015-08-11 22:58:22 +00:00
|
|
|
|
2015-08-11 22:59:48 +00:00
|
|
|
block
|
|
|
|
|
2015-08-11 22:58:22 +00:00
|
|
|
mixin columns(...names)
|
|
|
|
tr
|
|
|
|
each name in names
|
|
|
|
th= name
|
|
|
|
|
|
|
|
|
|
|
|
mixin row(...cells)
|
|
|
|
tr
|
|
|
|
each cell in cells
|
|
|
|
td= cell
|
|
|
|
|
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
mixin social
|
|
|
|
footer(role="contentinfo")
|
|
|
|
a(href="http://twitter.com/share?text=[ARTICLE HEADLINE]&url=[ARTICLE LINK]&via=honnibal" title="Share on Twitter" rel="nofollow" class="button button-twitter") Share on Twitter
|
2015-08-11 22:58:22 +00:00
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
div.discuss
|
|
|
|
a(href="#" title="Discuss on Hacker News" rel="nofollow" class="button button-hn")
|
|
|
|
| Discuss on Hacker News
|
2015-08-11 22:58:22 +00:00
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
a(href="#" title="Discuss on Reddit" rel="nofollow" class="button button-reddit")
|
|
|
|
| Discuss on Reddit
|
2015-08-11 22:58:22 +00:00
|
|
|
|
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
block intro_block
|
|
|
|
section(class="intro")
|
|
|
|
+lede
|
2015-08-11 22:58:22 +00:00
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
nav(role="navigation")
|
|
|
|
ul
|
|
|
|
li: a(href="#example-use" class="button") Examples
|
|
|
|
li: a(href="#comparisons" class="button") Comparisons
|
2015-08-15 06:56:30 +00:00
|
|
|
li: a(href="#online-demo" class="button") Try Online
|
2015-08-14 18:13:22 +00:00
|
|
|
li: a(href="#install" class="button")
|
|
|
|
| Install
|
|
|
|
<span class="button-caption">v0.89</span>
|
2015-08-11 22:58:22 +00:00
|
|
|
|
|
|
|
|
2015-08-15 06:56:30 +00:00
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
block body_block
|
|
|
|
article(class="page landing-page")
|
2015-08-11 22:58:22 +00:00
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
+Section("Usage by Example", "example-use", "./usage_examples.jade")
|
2015-08-11 22:58:22 +00:00
|
|
|
|
2015-08-15 06:56:30 +00:00
|
|
|
+Section("Comparisons and Benchmarks", "comparisons", "./comparisons.jade")
|
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
+Section("Online Demo", "online-demo", "./online_demo.jade")
|
2015-08-11 22:58:22 +00:00
|
|
|
|
|
|
|
|
2015-08-12 20:39:48 +00:00
|
|
|
+Section("Install", "install", "./install.jade")
|