mirror of
https://github.com/explosion/spaCy.git
synced 2025-02-06 06:30:35 +03:00
WIP on removing goldparse Get ArcEager compiling after GoldParse excise Update setup.py Get spacy.syntax compiling after removing GoldParse Rename NewExample -> Example and clean up Clean html files Start updating tests Update Morphologizer
9 lines
169 B
Cython
9 lines
169 B
Cython
from ..tokens.doc cimport Doc
|
|
from .align cimport Alignment
|
|
|
|
|
|
cdef class Example:
|
|
cdef readonly Doc x
|
|
cdef readonly Doc y
|
|
cdef readonly Alignment _alignment
|