1
1
mirror of https://github.com/explosion/spaCy.git synced 2025-03-19 01:22:14 +03:00
spaCy/spacy/lang/hy/examples.py
2020-06-21 22:34:10 +02:00

14 lines
439 B
Python

"""
Example sentences to test spaCy and its language models.
>>> from spacy.lang.hy.examples import sentences
>>> docs = nlp.pipe(sentences)
"""
sentences = [
"Լոնդոնը Միացյալ Թագավորության մեծ քաղաք է։",
"Ո՞վ է Ֆրանսիայի նախագահը։",
"Որն է Միացյալ Նահանգների մայրաքաղաքը։",
"Ե՞րբ է ծնվել Բարաք Օբաման։",
]