mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-04 06:16:33 +03:00
10 lines
230 B
Cython
10 lines
230 B
Cython
from .pipe cimport Pipe
|
|
from ..vocab cimport Vocab
|
|
|
|
cdef class TrainablePipe(Pipe):
|
|
cdef public Vocab vocab
|
|
cdef public object model
|
|
cdef public object cfg
|
|
cdef public object scorer
|
|
cdef bint _save_activations
|