mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 05:07:03 +03:00
d50b8d51e2
Add: example sentences to improve the Turkish model. Let's get the tr_web_core_sm out in the the world yaa
22 lines
727 B
Python
22 lines
727 B
Python
"""
|
||
Example sentences to test spaCy and its language models.
|
||
>>> from spacy.lang.tr.examples import sentences
|
||
>>> docs = nlp.pipe(sentences)
|
||
"""
|
||
|
||
|
||
sentences = [
|
||
"Neredesin?",
|
||
"Neredesiniz?",
|
||
"Bu bir cümledir.",
|
||
"Sürücüsüz araçlar sigorta yükümlülüğünü üreticilere kaydırıyor.",
|
||
"San Francisco kaldırımda kurye robotları yasaklayabilir."
|
||
"Londra İngiltere'nin başkentidir.",
|
||
"Türkiye'nin başkenti neresi?",
|
||
"Bakanlar Kurulu 180 günlük eylem planını açıkladı.",
|
||
"Merkez Bankası, beklentiler doğrultusunda faizlerde değişikliğe gitmedi.",
|
||
"Cemal Sureya kimdir?",
|
||
"Bunlari Biliyor muydunuz?",
|
||
"Altinoluk Turkiye haritasinin neresinde yer alir?",
|
||
]
|