You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
466 B
14 lines
466 B
"""
|
|
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.",
|
|
]
|