From 7bbdffd36e557b6d1dec17e7c5263954c59af401 Mon Sep 17 00:00:00 2001 From: Ines Montani Date: Fri, 14 Dec 2018 12:51:18 +0100 Subject: [PATCH] Remove pre-set lemma for "cause" (resolves #2165) --- spacy/lang/en/tokenizer_exceptions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/lang/en/tokenizer_exceptions.py b/spacy/lang/en/tokenizer_exceptions.py index 719bdcd42..5063319a6 100644 --- a/spacy/lang/en/tokenizer_exceptions.py +++ b/spacy/lang/en/tokenizer_exceptions.py @@ -323,7 +323,7 @@ for exc_data in [ # Other contractions with leading apostrophe for exc_data in [ - {ORTH: "cause", LEMMA: "because", NORM: "because"}, + {ORTH: "cause", NORM: "because"}, {ORTH: "em", LEMMA: PRON_LEMMA, NORM: "them"}, {ORTH: "ll", LEMMA: "will", NORM: "will"}, {ORTH: "nuff", LEMMA: "enough", NORM: "enough"},