2015-06-02 01:28:02 +03:00
|
|
|
from thinc.search cimport Beam
|
|
|
|
|
2015-01-07 16:10:15 +03:00
|
|
|
from .._ml cimport Model
|
2014-12-16 00:06:04 +03:00
|
|
|
|
|
|
|
from .arc_eager cimport TransitionSystem
|
|
|
|
|
2015-07-13 21:20:58 +03:00
|
|
|
from ..tokens.doc cimport Doc
|
|
|
|
from ..structs cimport TokenC
|
2015-07-15 00:47:03 +03:00
|
|
|
from thinc.api cimport Example, ExampleC
|
|
|
|
from .stateclass cimport StateClass
|
2014-12-16 00:06:04 +03:00
|
|
|
|
|
|
|
|
2015-06-02 01:53:49 +03:00
|
|
|
cdef class Parser:
|
2014-12-31 11:40:59 +03:00
|
|
|
cdef readonly Model model
|
2015-02-23 22:04:53 +03:00
|
|
|
cdef readonly TransitionSystem moves
|
2015-07-15 00:47:03 +03:00
|
|
|
|
|
|
|
cdef void parse(self, StateClass stcls, ExampleC eg) nogil
|
2015-08-09 03:29:58 +03:00
|
|
|
cdef void predict(self, StateClass stcls, ExampleC* eg) nogil
|