mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			341 B
		
	
	
	
		
			Cython
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			341 B
		
	
	
	
		
			Cython
		
	
	
	
	
	
cimport numpy as np
 | 
						|
 | 
						|
from .doc cimport Doc
 | 
						|
 | 
						|
 | 
						|
cdef class Span:
 | 
						|
    cdef readonly Doc doc
 | 
						|
    cdef readonly int start
 | 
						|
    cdef readonly int end
 | 
						|
    cdef readonly int start_char
 | 
						|
    cdef readonly int end_char
 | 
						|
    cdef readonly int label
 | 
						|
 | 
						|
    cdef public _vector
 | 
						|
    cdef public _vector_norm
 | 
						|
 | 
						|
 | 
						|
    cpdef int _recalculate_indices(self) except -1
 |