1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-03-14 15:12:15 +03:00
spaCy/spacy/ner/annot.pxd

9 lines
168 B
Cython
Raw Normal View History

from cymem.cymem cimport Pool
cdef class NERAnnotation:
cdef Pool mem
cdef int* starts
cdef int* ends
cdef int* labels
cdef readonly list entities