2017-03-10 17:21:21 +00:00
|
|
|
from thinc.typedefs cimport atom_t
|
2015-06-01 22:28:02 +00:00
|
|
|
|
2015-11-06 16:24:30 +00:00
|
|
|
from .stateclass cimport StateClass
|
2014-12-15 21:06:04 +00:00
|
|
|
from .arc_eager cimport TransitionSystem
|
2016-09-24 13:42:01 +00:00
|
|
|
from ..vocab cimport Vocab
|
2015-07-13 18:20:58 +00:00
|
|
|
from ..tokens.doc cimport Doc
|
|
|
|
from ..structs cimport TokenC
|
2016-02-01 07:34:55 +00:00
|
|
|
from ._state cimport StateC
|
2015-11-06 16:24:30 +00:00
|
|
|
|
|
|
|
|
2015-06-01 22:53:49 +00:00
|
|
|
cdef class Parser:
|
2016-09-24 13:42:01 +00:00
|
|
|
cdef readonly Vocab vocab
|
2017-05-04 10:17:36 +00:00
|
|
|
cdef readonly object model
|
2015-02-23 19:04:53 +00:00
|
|
|
cdef readonly TransitionSystem moves
|
2016-09-24 18:26:17 +00:00
|
|
|
cdef readonly object cfg
|
2016-01-30 19:27:07 +00:00
|
|
|
|
2017-05-04 10:17:36 +00:00
|
|
|
#cdef int parseC(self, TokenC* tokens, int length, int nr_feat) nogil
|