mirror of
				https://github.com/explosion/spaCy.git
				synced 2025-11-04 01:48:04 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			524 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			524 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# coding: utf8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
 | 
						|
"""
 | 
						|
Example sentences to test spaCy and its language models.
 | 
						|
 | 
						|
>>> from spacy.lang.sq.examples import sentences
 | 
						|
>>> docs = nlp.pipe(sentences)
 | 
						|
"""
 | 
						|
 | 
						|
 | 
						|
sentences = [
 | 
						|
    "Apple po shqyrton blerjen e nje shoqërie të U.K. për 1 miliard dollarë",
 | 
						|
    "Makinat autonome ndryshojnë përgjegjësinë e sigurimit ndaj prodhuesve",
 | 
						|
    "San Francisko konsideron ndalimin e robotëve të shpërndarjes",
 | 
						|
    "Londra është një qytet i madh në Mbretërinë e Bashkuar.",
 | 
						|
]
 |