spaCy/spacy/lang/hi/examples.py
Abhinav Sharma 84edade82d
Create examples.py
Populated the file with the translations of English example sentences
2017-11-08 13:23:08 +05:30

23 lines
1.1 KiB
Python
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding: utf8
from __future__ import unicode_literals
"""
Example sentences to test spaCy and its language models.
>>> from spacy.lang.en.examples import sentences
>>> docs = nlp.pipe(sentences)
"""
sentences = [
"एप्पल 1 अरब डॉलर के लिए यू.के. स्टार्टअप खरीदने पर विचार कर रहा है",
     "स्वायत्त कार निर्माताओं की ओर बीमा दायित्व रखती है",
     "सैन फ्रांसिस्को फुटवे डिलीवरी रोबोटों पर प्रतिबंध लगाने का विचार कर रहा है",
     "लंदन यूनाइटेड किंगडम का बड़ा शहर है।",
     "आप कहाँ हैं?",
     "फ्रांस के राष्ट्रपति कौन हैं?",
     "संयुक्त राज्य की राजधानी क्या है?",
     "बराक ओबामा का जन्म हुआ था?"
]