mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-10-30 23:47:31 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Cython
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			168 B
		
	
	
	
		
			Cython
		
	
	
	
	
	
| from cymem.cymem cimport Pool
 | |
| 
 | |
| cdef class NERAnnotation:
 | |
|     cdef Pool mem
 | |
|     cdef int* starts
 | |
|     cdef int* ends
 | |
|     cdef int* labels
 | |
|     cdef readonly list entities
 |