* Fix bug in POS tagger feature

This commit is contained in:
Matthew Honnibal 2015-01-25 02:20:15 +11:00
parent dd56e298e2
commit 4e857ab7a6
1 changed files with 1 additions and 1 deletions

View File

@ -328,5 +328,5 @@ cdef inline void _fill_from_token(atom_t* context, const TokenC* t) nogil:
context[2] = t.lex.shape context[2] = t.lex.shape
context[3] = t.lex.prefix context[3] = t.lex.prefix
context[4] = t.lex.suffix context[4] = t.lex.suffix
context[5] = t.pos context[5] = t.tag
context[6] = t.lemma context[6] = t.lemma