mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-06 15:26:35 +03:00
c3da32b46b
When the value is: - A bool: all activations are stored when set to `True`. - A List[str]: the activations named in the list are stored
10 lines
233 B
Cython
10 lines
233 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 object _store_activations
|