mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
10 lines
168 B
Cython
10 lines
168 B
Cython
from .doc cimport Doc
|
|
|
|
|
|
cdef class Span:
|
|
cdef readonly Doc _seq
|
|
cdef public int i
|
|
cdef public int start
|
|
cdef public int end
|
|
cdef readonly int label
|