mirror of
https://github.com/explosion/spaCy.git
synced 2025-11-18 08:45:50 +03:00
12 lines
302 B
Python
12 lines
302 B
Python
"""
|
|
Example sentences to test spaCy and its language models.
|
|
|
|
>>> from spacy.lang.da.examples import sentences
|
|
>>> docs = nlp.pipe(sentences)
|
|
"""
|
|
|
|
sentences = [
|
|
"اردو ہے جس کا نام ہم جانتے ہیں داغ",
|
|
"سارے جہاں میں دھوم ہماری زباں کی ہے",
|
|
]
|