mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			441 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			441 B
		
	
	
	
		
			Python
		
	
	
	
	
	
"""
 | 
						|
Example sentences to test spaCy and its language models.
 | 
						|
>>> from spacy.lang.hy.examples import sentences
 | 
						|
>>> docs = nlp.pipe(sentences)
 | 
						|
"""
 | 
						|
 | 
						|
 | 
						|
sentences = [
 | 
						|
    "Լոնդոնը Միացյալ Թագավորության մեծ քաղաք է։",
 | 
						|
    "Ո՞վ է Ֆրանսիայի նախագահը։",
 | 
						|
    "Ո՞րն է Միացյալ Նահանգների մայրաքաղաքը։",
 | 
						|
    "Ե՞րբ է ծնվել Բարաք Օբաման։",
 | 
						|
]
 |