mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
15 lines
397 B
Python
15 lines
397 B
Python
|
"""
|
||
|
Example sentences to test spaCy and its language models.
|
||
|
|
||
|
>>> from spacy.lang.lij.examples import sentences
|
||
|
>>> docs = nlp.pipe(sentences)
|
||
|
"""
|
||
|
|
||
|
|
||
|
sentences = [
|
||
|
"Sciusciâ e sciorbî no se peu.",
|
||
|
"Graçie di çetroin, che me son arrivæ.",
|
||
|
"Vegnime apreuvo, che ve fasso pescâ di òmmi.",
|
||
|
"Bella pe sempre l'ægua inta conchetta quande unn'agoggia d'ægua a se â trapaña.",
|
||
|
]
|