spaCy/spacy/syntax/iterators.pxd
Wolfgang Seeker 1fe911cdb0 bigfix
2016-04-07 18:19:51 +02:00

18 lines
332 B
Cython

from spacy.tokens.doc cimport Doc
cdef class DocIterator:
cdef Doc _doc
cdef class EnglishNounChunks(DocIterator):
cdef int i
cdef int _np_label
cdef set _np_deps
cdef int _conjunct
cdef class GermanNounChunks(DocIterator):
cdef int i
cdef int _np_label
cdef set _np_deps
cdef int _close_app