mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
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."
|
||
|
]
|