mirror of https://github.com/explosion/spaCy.git
commit
a218579be7
|
@ -0,0 +1,15 @@
|
|||
# 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."
|
||||
]
|
Loading…
Reference in New Issue