spaCy/spacy/tokens/span.pxd

20 lines
427 B
Cython
Raw Normal View History

cimport numpy as np
from .doc cimport Doc
2017-05-28 19:09:27 +03:00
from ..typedefs cimport attr_t
cdef class Span:
2015-09-29 16:03:55 +03:00
cdef readonly Doc doc
cdef readonly int start
cdef readonly int end
cdef readonly int start_char
cdef readonly int end_char
2017-05-28 19:09:27 +03:00
cdef readonly attr_t label
cdef public _vector
cdef public _vector_norm
cpdef int _recalculate_indices(self) except -1
2017-08-19 13:20:45 +03:00
cpdef np.ndarray to_array(self, object features)