mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-13 18:56:36 +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
|