From be9ccdac6d95d95349ddf3e9c1618bf09ef42e30 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 8 Jun 2015 02:17:52 +0200 Subject: [PATCH] * Upd docs --- docs/source/updates.rst | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/docs/source/updates.rst b/docs/source/updates.rst index 245852323..9ffebf717 100644 --- a/docs/source/updates.rst +++ b/docs/source/updates.rst @@ -1,16 +1,25 @@ Updates ======= +To update your installation: + +.. code:: bash + + $ pip install --upgrade spacy + $ python -m spacy.en.download all + +Most updates ship a new model, so you will usually have to redownload the data. + 2015-05-12 v0.85 ---------------- * Parser produces richer dependency labels following the `ClearNLP scheme`_ * Training data now includes text from a variety of genres. -* Parser now uses more memory and is slightly slower, due to the additional - labels. +* Parser now uses more memory and the data is slightly larger, due to the additional + labels. Impact on efficiency is minimal: entire process still takes + <10ms per document. Most users should see a substantial increase in accuracy from the new model. -Be sure to redownload data, with **python -m spacy.en.download all** Long post on accuracy evaluation and model details coming soon. .. _ClearNLP scheme: https://github.com/clir/clearnlp-guidelines/blob/master/md/dependency/dependency_guidelines.md