mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	* version bump to 3.0.0a16 * rename "gold" folder to "training" * rename 'annotation_setter' to 'set_extra_annotations' * formatting
		
			
				
	
	
		
			10 lines
		
	
	
		
			225 B
		
	
	
	
		
			Cython
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			225 B
		
	
	
	
		
			Cython
		
	
	
	
	
	
from ..tokens.doc cimport Doc
 | 
						|
 | 
						|
 | 
						|
cdef class Example:
 | 
						|
    cdef readonly Doc x
 | 
						|
    cdef readonly Doc y
 | 
						|
    cdef readonly object _cached_alignment
 | 
						|
    cdef readonly object _cached_words_x
 | 
						|
    cdef readonly object _cached_words_y
 |