From 266efc20184afcef0becd77f7ab2eb701da2f2b8 Mon Sep 17 00:00:00 2001 From: Otto Sulin Date: Fri, 23 Mar 2018 22:58:52 +0200 Subject: [PATCH] Added Finnish examples --- spacy/lang/fi/examples.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 spacy/lang/fi/examples.py diff --git a/spacy/lang/fi/examples.py b/spacy/lang/fi/examples.py new file mode 100644 index 000000000..e30ee3956 --- /dev/null +++ b/spacy/lang/fi/examples.py @@ -0,0 +1,15 @@ +# coding: utf8 +from __future__ import unicode_literals + +""" +Example sentences to test spaCy and its language models. +>>> from spacy.lang.tr.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." +]