mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
* Fix broken StateClass.E tracking
This commit is contained in:
parent
5f3e43891f
commit
9285f01d26
|
@ -46,7 +46,7 @@ cdef class StateClass:
|
|||
cdef int E(self, int i) nogil:
|
||||
if self._e_i <= 0 or self._e_i >= self.length:
|
||||
return 0
|
||||
if i < 0 or i >= self.length:
|
||||
if i < 0 or i > self._e_i:
|
||||
return 0
|
||||
self._ents[self._e_i - (i+1)].start
|
||||
|
||||
|
@ -174,7 +174,8 @@ cdef class StateClass:
|
|||
self._e_i += 1
|
||||
|
||||
cdef void close_ent(self) nogil:
|
||||
self._ents[self._e_i-1].end = self.B(0)+1
|
||||
self._e_i -= 1
|
||||
self._ents[self._e_i].end = self.B(0)+1
|
||||
self._sent[self.B(0)].ent_iob = 1
|
||||
|
||||
cdef void set_ent_tag(self, int i, int ent_iob, int ent_type) nogil:
|
||||
|
|
Loading…
Reference in New Issue
Block a user