mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			168 B
		
	
	
	
		
			Cython
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			168 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
 |