From 7afe56a3602e4a7876f5c87ac5b4f3531fd60487 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Thu, 7 Mar 2019 21:57:56 +0100 Subject: [PATCH] Fix morphological features in en tag_map --- spacy/lang/en/tag_map.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/spacy/lang/en/tag_map.py b/spacy/lang/en/tag_map.py index 151b42c0c..88fc2db3e 100644 --- a/spacy/lang/en/tag_map.py +++ b/spacy/lang/en/tag_map.py @@ -58,10 +58,10 @@ TAG_MAP = { "Number": "sing", "Person": "three", }, - "WDT": {POS: ADJ, "PronType": "int,rel"}, - "WP": {POS: NOUN, "PronType": "int,rel"}, - "WP$": {POS: ADJ, "Poss": "yes", "PronType": "int,rel"}, - "WRB": {POS: ADV, "PronType": "int,rel"}, + "WDT": {POS: ADJ, "PronType": "rel"}, + "WP": {POS: NOUN, "PronType": "rel"}, + "WP$": {POS: ADJ, "Poss": "yes", "PronType": "rel"}, + "WRB": {POS: ADV, "PronType": "rel"}, "ADD": {POS: X}, "NFP": {POS: PUNCT}, "GW": {POS: X},