2015-08-24 03:25:55 +00:00
|
|
|
from ._ml cimport Model
|
2015-08-27 07:16:11 +00:00
|
|
|
from .structs cimport TokenC
|
2015-08-26 17:19:21 +00:00
|
|
|
from .vocab cimport Vocab
|
2015-08-24 03:25:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
cdef class Tagger:
|
2015-08-26 17:19:21 +00:00
|
|
|
cdef readonly Vocab vocab
|
2015-08-27 07:16:11 +00:00
|
|
|
cdef readonly Model model
|
2015-08-24 03:25:55 +00:00
|
|
|
cdef public dict freqs
|
|
|
|
|
|
|
|
cdef int predict(self, int i, const TokenC* tokens) except -1
|
|
|
|
cdef int update(self, int i, const TokenC* tokens, int gold) except -1
|