mirror of https://github.com/explosion/spaCy.git
* Add l_edge and r_edge props in TokenC for tracking the parse-yield of the token
This commit is contained in:
parent
ec42b06a8d
commit
d634038eb6
|
@ -59,8 +59,11 @@ cdef struct TokenC:
|
|||
int head
|
||||
int dep
|
||||
bint sent_end
|
||||
|
||||
uint32_t l_kids
|
||||
uint32_t r_kids
|
||||
uint32_t l_edge
|
||||
uint32_t r_edge
|
||||
|
||||
int ent_iob
|
||||
int ent_type
|
||||
|
|
Loading…
Reference in New Issue