2016-01-30 13:31:12 +00:00
|
|
|
from thinc.linear.avgtron cimport AveragedPerceptron
|
|
|
|
from thinc.extra.eg cimport Example
|
|
|
|
from thinc.structs cimport ExampleC
|
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
|
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
|
|
|
|
|
|
|
|
|
|
|
cdef class ParserModel(AveragedPerceptron):
|
2016-02-01 07:34:55 +00:00
|
|
|
cdef void set_featuresC(self, ExampleC* eg, const StateC* state) nogil
|
2014-12-15 21:06:04 +00:00
|
|
|
|
2015-06-01 22:53:49 +00:00
|
|
|
cdef class Parser:
|
2015-11-06 16:24:30 +00:00
|
|
|
cdef readonly ParserModel model
|
2015-02-23 19:04:53 +00:00
|
|
|
cdef readonly TransitionSystem moves
|
2016-03-01 09:09:08 +00:00
|
|
|
cdef int _projectivize
|
2016-01-30 19:27:07 +00:00
|
|
|
|
2016-02-06 09:06:13 +00:00
|
|
|
cdef int parseC(self, TokenC* tokens, int length, int nr_feat, int nr_class) nogil
|