mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
15 lines
467 B
Python
15 lines
467 B
Python
"""
|
|
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.",
|
|
]
|