mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-27 01:34:30 +03:00
* 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 head
|
||||||
int dep
|
int dep
|
||||||
bint sent_end
|
bint sent_end
|
||||||
|
|
||||||
uint32_t l_kids
|
uint32_t l_kids
|
||||||
uint32_t r_kids
|
uint32_t r_kids
|
||||||
|
uint32_t l_edge
|
||||||
|
uint32_t r_edge
|
||||||
|
|
||||||
int ent_iob
|
int ent_iob
|
||||||
int ent_type
|
int ent_type
|
||||||
|
|
Loading…
Reference in New Issue
Block a user