mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
9 lines
168 B
Cython
9 lines
168 B
Cython
from cymem.cymem cimport Pool
|
|
|
|
cdef class NERAnnotation:
|
|
cdef Pool mem
|
|
cdef int* starts
|
|
cdef int* ends
|
|
cdef int* labels
|
|
cdef readonly list entities
|