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.
19 lines
600 B
19 lines
600 B
"""
|
|
Example sentences to test spaCy and its language models.
|
|
|
|
>>> from spacy.lang.ro import Romanian
|
|
>>> from spacy.lang.ro.examples import sentences
|
|
>>> nlp = Romanian()
|
|
>>> docs = nlp.pipe(sentences)
|
|
"""
|
|
|
|
sentences = [
|
|
"Apple plănuiește să cumpere o companie britanică pentru un miliard de dolari",
|
|
"Municipalitatea din San Francisco ia în calcul interzicerea roboților curieri pe trotuar",
|
|
"Londra este un oraș mare în Regatul Unit",
|
|
"Unde ești?",
|
|
"Cine este președintele Franței?",
|
|
"Care este capitala Statelor Unite?",
|
|
"Când s-a născut Barack Obama?",
|
|
]
|