From 3c7928f6183bed3818451167a6e9162e852a019c Mon Sep 17 00:00:00 2001 From: Henning Peters Date: Sun, 29 Nov 2015 10:08:26 +0100 Subject: [PATCH] fix broken link --- website/src/jade/blog/how-spacy-works/index.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/jade/blog/how-spacy-works/index.jade b/website/src/jade/blog/how-spacy-works/index.jade index 0aafcefc5..0f6b05913 100644 --- a/website/src/jade/blog/how-spacy-works/index.jade +++ b/website/src/jade/blog/how-spacy-works/index.jade @@ -98,7 +98,7 @@ include ./meta.jade h3 Dependency Parser - p The parser uses the algorithm described in my #[a(href="parsing-english-in-python/") 2014 blog post]. This algorithm, shift-reduce dependency parsing, is becoming widely adopted due to its compelling speed/accuracy trade-off. + p The parser uses the algorithm described in my #[a(href="/blog/parsing-english-in-python/") 2014 blog post]. This algorithm, shift-reduce dependency parsing, is becoming widely adopted due to its compelling speed/accuracy trade-off. p Some quick details about spaCy's take on this, for those who happen to know these models well. I'll write up a better description shortly.