mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
db55577c45
* Remove unicode declarations * Remove Python 3.5 and 2.7 from CI * Don't require pathlib * Replace compat helpers * Remove OrderedDict * Use f-strings * Set Cython compiler language level * Fix typo * Re-add OrderedDict for Table * Update setup.cfg * Revert CONTRIBUTING.md * Revert lookups.md * Revert top-level.md * Small adjustments and docs [ci skip]
22 lines
1.2 KiB
Python
22 lines
1.2 KiB
Python
|
|
"""
|
|
Example sentences to test spaCy and its language models.
|
|
|
|
>>> from spacy.lang.te import Telugu
|
|
>>> nlp = Telugu()
|
|
>>> from spacy.lang.te.examples import sentences
|
|
>>> docs = nlp.pipe(sentences)
|
|
"""
|
|
|
|
|
|
sentences = [
|
|
"ఆపిల్ 1 బిలియన్ డాలర్స్ కి యూ.కె. స్టార్ట్అప్ ని కొనాలని అనుకుంటుంది.",
|
|
"ఆటోనోమోస్ కార్లు భీమా బాధ్యతను తయారీదారులపైకి మళ్లిస్తాయి.",
|
|
"సాన్ ఫ్రాన్సిస్కో కాలిబాట డెలివరీ రోబోట్లను నిషేధించడానికి ఆలోచిస్తుంది.",
|
|
"లండన్ యునైటెడ్ కింగ్డమ్ లో పెద్ద సిటీ.",
|
|
"నువ్వు ఎక్కడ ఉన్నావ్?",
|
|
"ఫ్రాన్స్ అధ్యక్షుడు ఎవరు?",
|
|
"యునైటెడ్ స్టేట్స్ యొక్క రాజధాని ఏంటి?",
|
|
"బరాక్ ఒబామా ఎప్పుడు జన్మించారు?",
|
|
]
|