mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-31 07:57:35 +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
 |