mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
11 lines
231 B
Cython
11 lines
231 B
Cython
from ..vocab cimport Vocab
|
|
from .pipe cimport Pipe
|
|
|
|
|
|
cdef class TrainablePipe(Pipe):
|
|
cdef public Vocab vocab
|
|
cdef public object model
|
|
cdef public object cfg
|
|
cdef public object scorer
|
|
cdef bint _save_activations
|