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

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