* Fix handling of exclusion entities

This commit is contained in:
Matthew Honnibal 2015-08-06 17:28:43 +02:00
parent 9f65879991
commit b0f5c39084
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ cdef class Doc:
cdef attr_t ent_type
cdef int start, end
for ent_type, start, end in ents:
if ent_type is None:
if ent_type is None or ent_type < 0:
# Mark as O
for i in range(start, end):
self.data[i].ent_type = 0