From 5d25ee52fb514720746a8f285b0d48b016d3d8d3 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Mon, 11 Mar 2019 01:06:02 +0100 Subject: [PATCH] Fix English tag map --- spacy/lang/en/tag_map.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/lang/en/tag_map.py b/spacy/lang/en/tag_map.py index 449c3cd7a..67f43c53c 100644 --- a/spacy/lang/en/tag_map.py +++ b/spacy/lang/en/tag_map.py @@ -36,7 +36,7 @@ TAG_MAP = { "NNS": {POS: NOUN, "Number": "plur"}, "PDT": {POS: DET, "AdjType": "pdt", "PronType": "prn"}, "POS": {POS: PART, "Poss": "yes"}, - "PRP": {POS: DET, "PronType": "prs"}, + "PRP": {POS: PRON, "PronType": "prs"}, "PRP$": {POS: DET, "PronType": "prs", "Poss": "yes"}, "RB": {POS: ADV, "Degree": "pos"}, "RBR": {POS: ADV, "Degree": "comp"},