From 782056d11722a5b3eb352cfdf29a4b5deabd49a8 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 28 Aug 2019 16:59:45 +0200 Subject: [PATCH] Fix morph rules --- spacy/lang/en/morph_rules.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/spacy/lang/en/morph_rules.py b/spacy/lang/en/morph_rules.py index b00534cc5..f910e42b8 100644 --- a/spacy/lang/en/morph_rules.py +++ b/spacy/lang/en/morph_rules.py @@ -73,10 +73,11 @@ _subordinating_conjunctions = [ "will", ] -_relative_pronouns = ["this", "that", "those", "these"] +# This seems kind of wrong too? +#_relative_pronouns = ["this", "that", "those", "these"] MORPH_RULES = { - "DT": {word: {"POS": "PRON"} for word in _relative_pronouns}, + #"DT": {word: {"POS": "PRON"} for word in _relative_pronouns}, "IN": {word: {"POS": "SCONJ"} for word in _subordinating_conjunctions}, "NN": { "something": {"POS": "PRON"},