mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
8e7557656f
* version bump to 3.0.0a16 * rename "gold" folder to "training" * rename 'annotation_setter' to 'set_extra_annotations' * formatting
10 lines
225 B
Cython
10 lines
225 B
Cython
from ..tokens.doc cimport Doc
|
|
|
|
|
|
cdef class Example:
|
|
cdef readonly Doc x
|
|
cdef readonly Doc y
|
|
cdef readonly object _cached_alignment
|
|
cdef readonly object _cached_words_x
|
|
cdef readonly object _cached_words_y
|