1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-04-01 07:44:12 +03:00
spaCy/spacy/ner/structs.pxd

24 lines
283 B
Cython

from thinc.typedefs cimport class_t
cdef struct Entity:
int start
int end
int label
cdef struct State:
Entity curr
Entity* ents
int* tags
int i
int j
int length
cdef struct Move:
class_t clas
int action
int label
bint accept