mirror of https://github.com/explosion/spaCy.git
* Add attribute for POS scheme
This commit is contained in:
parent
6c7e44140b
commit
8ff5b8bd84
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue