* Add attribute for POS scheme

This commit is contained in:
Matthew Honnibal 2015-01-17 17:33:16 +11:00
parent 6c7e44140b
commit 8ff5b8bd84
1 changed files with 3 additions and 2 deletions

View File

@ -30,6 +30,7 @@ cdef class Tokens:
cdef Pool mem cdef Pool mem
cdef Vocab vocab cdef Vocab vocab
cdef list tag_names cdef list tag_names
cdef dict pos_scheme
cdef TokenC* data cdef TokenC* data
@ -59,5 +60,5 @@ cdef class Token:
cdef readonly attr_t flags cdef readonly attr_t flags
cdef readonly attr_t lemma cdef readonly attr_t lemma
cdef readonly univ_tag_t pos cdef readonly univ_tag_t pos
cdef readonly attr_t fine_pos cdef readonly attr_t tag
cdef readonly attr_t dep_tag cdef readonly attr_t dep