mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-01 12:56:29 +03:00
aea53378dc
This means that we can also bring back `store_activations` setter.
10 lines
231 B
Cython
10 lines
231 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 _store_activations
|