From 6f983132544e1d20684930b7157d92a70f16a32c Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Wed, 26 Sep 2018 21:03:03 +0200 Subject: [PATCH] Fix disjunctive features in English 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 fc3d2cc93..ffc1739cb 100644 --- a/spacy/lang/en/tag_map.py +++ b/spacy/lang/en/tag_map.py @@ -52,10 +52,10 @@ TAG_MAP = { "VBN": {POS: VERB, "VerbForm": "part", "Tense": "past", "Aspect": "perf"}, "VBP": {POS: VERB, "VerbForm": "fin", "Tense": "pres"}, "VBZ": {POS: VERB, "VerbForm": "fin", "Tense": "pres", "Number": "sing", "Person": 3}, - "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": "int,rel"}, + "WP": {POS: NOUN, "PronType": "int,rel"}, + "WP$": {POS: ADJ, "Poss": "yes", "PronType": "int,rel"}, + "WRB": {POS: ADV, "PronType": "int,rel"}, "ADD": {POS: X}, "NFP": {POS: PUNCT}, "GW": {POS: X},