mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 13:47:13 +03:00
1f7229f40f
This reverts commitc9ba3d3c2d
, reversing changes made to92c26a35d4
.
16 lines
496 B
Python
16 lines
496 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
"""
|
|
Example sentences to test spaCy and its language models.
|
|
>>> from spacy.lang.fi.examples import sentences
|
|
>>> docs = nlp.pipe(sentences)
|
|
"""
|
|
|
|
sentences = [
|
|
"Apple harkitsee ostavansa startup-yrityksen UK:sta 1 miljardilla dollarilla.",
|
|
"Itseajavat autot siirtävät vakuutusriskin valmistajille.",
|
|
"San Francisco harkitsee jakelurobottien kieltämistä jalkakäytävillä.",
|
|
"Lontoo on iso kaupunki Iso-Britanniassa."
|
|
]
|