mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
03ab518f28
* Update examples.py adding factual sentences to the list * Add missing comma separators Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
25 lines
1.5 KiB
Python
25 lines
1.5 KiB
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
"""
|
|
Example sentences to test spaCy and its language models.
|
|
|
|
>>> from spacy.lang.hi.examples import sentences
|
|
>>> docs = nlp.pipe(sentences)
|
|
"""
|
|
|
|
|
|
sentences = [
|
|
"एप्पल 1 अरब डॉलर के लिए यू.के. स्टार्टअप खरीदने पर विचार कर रहा है।",
|
|
"स्वायत्त कारें निर्माताओं की ओर बीमा दायित्व रखतीं हैं।",
|
|
"सैन फ्रांसिस्को फुटपाथ वितरण रोबोटों पर प्रतिबंध लगाने का विचार कर रहा है।",
|
|
"लंदन यूनाइटेड किंगडम का विशाल शहर है।",
|
|
"आप कहाँ हो?",
|
|
"फ्रांस के राष्ट्रपति कौन हैं?",
|
|
"संयुक्त राज्यों की राजधानी क्या है?",
|
|
"बराक ओबामा का जन्म कब हुआ था?",
|
|
"जवाहरलाल नेहरू भारत के पहले प्रधानमंत्री हैं।",
|
|
"राजेंद्र प्रसाद, भारत के पहले राष्ट्रपति, दो कार्यकाल के लिए कार्यालय रखने वाले एकमात्र व्यक्ति हैं।",
|
|
]
|