mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-15 14:17:58 +03:00
8 lines
170 B
Cython
8 lines
170 B
Cython
|
from libcpp.vector cimport vector
|
||
|
cimport numpy as np
|
||
|
|
||
|
cdef class AlignmentArray:
|
||
|
cdef np.ndarray _data
|
||
|
cdef np.ndarray _lengths
|
||
|
cdef np.ndarray _starts_ends
|