spaCy/spacy/lang/fa/examples.py

16 lines
515 B
Python
Raw Normal View History

2018-01-27 12:51:38 +03:00
"""
Example sentences to test spaCy and its language models.
2018-01-27 12:57:26 +03:00
>>> from spacy.lang.fa.examples import sentences
2018-01-27 12:51:38 +03:00
>>> docs = nlp.pipe(sentences)
"""
sentences = [
"این یک جمله نمونه می باشد.",
"قرار ما، امروز ساعت ۲:۳۰ بعدازظهر هست!",
2018-01-27 12:51:38 +03:00
"دیروز علی به من ۲۰۰۰.۱﷼ پول نقد داد.",
"چطور می‌توان از تهران به کاشان رفت؟",
"حدود ۸۰٪ هوا از نیتروژن تشکیل شده است.",
2018-01-27 12:51:38 +03:00
]