mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-24 17:06:29 +03:00
Fix head-outside-sentence bug. Fixes #3170
This commit is contained in:
parent
f2fae1f186
commit
9ccd6a3062
|
@ -1000,8 +1000,8 @@ cdef int set_children_from_heads(TokenC* tokens, int length) except -1:
|
|||
tokens[i].r_kids = 0
|
||||
tokens[i].l_edge = i
|
||||
tokens[i].r_edge = i
|
||||
# Twice, for non-projectivity
|
||||
for loop_count in range(2):
|
||||
# Three times, for non-projectivity
|
||||
for loop_count in range(3):
|
||||
# Set left edges
|
||||
for i in range(length):
|
||||
child = &tokens[i]
|
||||
|
|
Loading…
Reference in New Issue
Block a user