mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
10 lines
187 B
Cython
10 lines
187 B
Cython
from ._ml cimport Model
|
|
from .structs cimport TokenC
|
|
from .vocab cimport Vocab
|
|
|
|
|
|
cdef class Tagger:
|
|
cdef readonly Vocab vocab
|
|
cdef readonly Model model
|
|
cdef public dict freqs
|