From 606035662566d7d37f1162d4ebd090fd509a27d2 Mon Sep 17 00:00:00 2001 From: Christopher Bryant Date: Sun, 17 Dec 2017 17:46:04 +0000 Subject: [PATCH] spacy v2.0 update --- readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f2acd61..8f1cab8 100644 --- a/readme.md +++ b/readme.md @@ -34,9 +34,11 @@ Currently, we only support Python 3. It is safest to install everything in a cle spaCy is a natural language processing (NLP) toolkit available here: https://spacy.io/. +UPDATE 17/12/17: In early November, spaCy underwent significant changes when it became version 2.0.0. Although we have not tested ERRANT with this new version of spaCy, the main difference seems to be a slight increase in performance at a significant cost to speed. As such, we currently recommend the slightly older spaCy v1.9.0 for use with ERRANT. + It can be installed for Python 3 as follows: ``` -pip3 install -U spacy +pip3 install -U spacy==1.9.0 python3 -m spacy download en ``` This installs both spaCy itself and the default English language model. More information on how to install spaCy can be found on its website. We used spaCy 1.7.3 in our original paper. Newer versions may affect the results slightly.