Add language example sentences (see #1107)
da, de, en, es, fr, he, it, nb, pl, pt, sv
2017-08-19 13:22:26 +03:00
|
|
|
# coding: utf8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
|
|
"""
|
|
|
|
Example sentences to test spaCy and its language models.
|
|
|
|
|
|
|
|
>>> from spacy.lang.sv.examples import sentences
|
|
|
|
>>> docs = nlp.pipe(sentences)
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
|
|
|
sentences = [
|
|
|
|
"Apple överväger att köpa brittisk startup för 1 miljard dollar.",
|
|
|
|
"Självkörande bilar förskjuter försäkringsansvar mot tillverkare.",
|
2017-11-08 03:06:37 +03:00
|
|
|
"San Fransisco överväger förbud mot leveransrobotar på trottoarer.",
|
Add language example sentences (see #1107)
da, de, en, es, fr, he, it, nb, pl, pt, sv
2017-08-19 13:22:26 +03:00
|
|
|
"London är en storstad i Storbritannien."
|
|
|
|
]
|