mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
f35980f865
* Added a file with examples in finnish * added contributor agreement
22 lines
603 B
Python
22 lines
603 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 = [
|
|
"Itseajavat autot siirtävät vakuutusvastuun autojen valmistajille",
|
|
"San Francisco harkitsee toimitusrobottien liikkumisen kieltämistä jalkakäytävillä",
|
|
"Lontoo on suuri kaupunki Yhdistyneessä Kuningaskunnassa.",
|
|
"Missä sinä olet?",
|
|
"Mikä on Yhdysvaltojen pääkaupunki?",
|
|
"Kuka on Suomen presidentti?",
|
|
"Milloin Sauli Niinistö on syntynyt?"
|
|
]
|