spaCy/spacy/lang/hr/examples.py
Ivan Šarić 434f6fa6c1 Issue #1107 - adds examples.py for Croatian language (#4143)
* adds contributor agreement for isaric

* adds examples.py for croatian language
2019-08-18 23:04:41 +02:00

19 lines
545 B
Python

# coding: utf8
from __future__ import unicode_literals
"""
Example sentences to test spaCy and its language models.
>>> from spacy.lang.hr.examples import sentences
>>> docs = nlp.pipe(sentences)
"""
sentences = [
"Ovo je rečenica.",
"Kako se popravlja auto?",
"Zagreb je udaljen od Ljubljane svega 150 km.",
"Nećete vjerovati što se dogodilo na ovogodišnjem festivalu!",
"Budućnost Apple je upitna nakon dugotrajnog pada vrijednosti dionica firme.",
"Trgovina oružjem predstavlja prijetnju za globalni mir.",
]