mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			313 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			313 B
		
	
	
	
		
			Python
		
	
	
	
	
	
 | 
						|
def test_simple_types(EN):
 | 
						|
    tokens = EN(u'Mr. Best flew to New York on Saturday morning.')
 | 
						|
    ents = list(tokens.ents)
 | 
						|
    assert ents[0].start == 1
 | 
						|
    assert ents[0].end == 2
 | 
						|
    assert ents[0].label_ == 'PERSON'
 | 
						|
    assert ents[1].start == 4
 | 
						|
    assert ents[1].end == 6
 | 
						|
    assert ents[1].label_ == 'GPE'
 |