From 71c00db8a5f5daea954708918e1ff576a560aa7d Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Wed, 21 Dec 2016 00:54:52 +0100 Subject: [PATCH] Update language models page --- website/docs/api/language-models.jade | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/website/docs/api/language-models.jade b/website/docs/api/language-models.jade index 1b63e7702..8e0f1b6b8 100644 --- a/website/docs/api/language-models.jade +++ b/website/docs/api/language-models.jade @@ -2,7 +2,7 @@ include ../../_includes/_mixins -p You can download data packs that add the following capabilities to spaCy. +p spaCy currently supports the following languages and capabilities: +aside-code("Download language models", "bash"). python -m spacy.en.download all @@ -24,8 +24,27 @@ p You can download data packs that add the following capabilities to spaCy. each icon in [ "pro", "con", "con", "con", "con", "con", "con", "con" ] +cell.u-text-center #[+procon(icon)] + +row + +cell Spanish #[code es] + each icon in [ "pro", "con", "con", "con", "con", "con", "con", "con" ] + +cell.u-text-center #[+procon(icon)] + p | Chinese tokenization requires the | #[+a("https://github.com/fxsjy/jieba") Jieba] library. Statistical - | models are coming soon. Tokenizers for Spanish, French, Italian and - | Portuguese are now under development. + | models are coming soon. + + + ++h(2, "alpha-support") Alpha support + +p + | Work has started on the following languages. You can help by improving + | the existing language data and extending the tokenization patterns. + ++table([ "Language", "Source" ]) + each language, code in { it: "Italian", fr: "French", pt: "Portuguese", nl: "Dutch", sv: "Swedish" } + +row + +cell #{language} #[code=code] + +cell + +src(gh("spaCy", "spacy/" + code)) spacy/#{code}