From 4e857ab7a68e560eb0e9cfee2f479b54f830c1a4 Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 25 Jan 2015 02:20:15 +1100 Subject: [PATCH] * Fix bug in POS tagger feature --- spacy/en/pos.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/en/pos.pyx b/spacy/en/pos.pyx index 38c0b1ae4..d4446f9b9 100644 --- a/spacy/en/pos.pyx +++ b/spacy/en/pos.pyx @@ -328,5 +328,5 @@ cdef inline void _fill_from_token(atom_t* context, const TokenC* t) nogil: context[2] = t.lex.shape context[3] = t.lex.prefix context[4] = t.lex.suffix - context[5] = t.pos + context[5] = t.tag context[6] = t.lemma