From 2aadb687c31fc7963285d1b065b920ae9dd07d0f Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 8 Jun 2015 01:47:06 +0200 Subject: [PATCH] * Note new release in docs --- docs/source/index.rst | 5 +++-- docs/source/updates.rst | 13 +++++++++++++ 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/docs/source/index.rst b/docs/source/index.rst index 851588268..684072a51 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -10,8 +10,9 @@ spaCy: Industrial-strength NLP .. _Issue Tracker: https://github.com/honnibal/spaCy/issues -**12/05**: *Version 0.84 released. Includes bug fixes to parsing and NER. Be -sure to download the most recent data, with "python -m spacy.en.download all".* +**2015-08-06**: `Version 0.85 released`_ + +.. _Version 0.85 released: updates.html `spaCy`_ is a new library for text processing in Python and Cython. I wrote it because I think small companies are terrible at diff --git a/docs/source/updates.rst b/docs/source/updates.rst index ae9b47958..e654cc4a7 100644 --- a/docs/source/updates.rst +++ b/docs/source/updates.rst @@ -1,6 +1,19 @@ Updates ======= +2015-05-12 v0.85 +---------------- + +* Parser produces richer dependency labels following the `ClearNLP scheme`_ +* Training data now includes text from a variety of genres. Most users should + see a substantial improvement in accuracy. +* Parser now uses more memory and is slightly slower, due to the additional + labels. +* Be sure to redownload data, with **python -m spacy.en.download all** + +.. _ClearNLP scheme: https://github.com/clir/clearnlp-guidelines/blob/master/md/dependency/dependency_guidelines.md + + 2015-05-12 v0.84 ----------------