From 485c4f6df5763a01b90117632114f96e28c31738 Mon Sep 17 00:00:00 2001 From: ines Date: Tue, 17 Oct 2017 02:37:45 +0200 Subject: [PATCH] Add Hungarian examples (see #1107) --- spacy/lang/hu/examples.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 spacy/lang/hu/examples.py diff --git a/spacy/lang/hu/examples.py b/spacy/lang/hu/examples.py new file mode 100644 index 000000000..718d7d536 --- /dev/null +++ b/spacy/lang/hu/examples.py @@ -0,0 +1,17 @@ +# coding: utf8 +from __future__ import unicode_literals + + +""" +Example sentences to test spaCy and its language models. + +>>> from spacy.lang.hu.examples import sentences +>>> docs = nlp.pipe(sentences) +""" + + +sentences = [ + "Az Apple egy brit startup vásárlását tervezi 1 milliárd dollár értékben.", + "San Francisco vezetése mérlegeli a járdát használó szállító robotok betiltását.", + "London az Egyesült Királyság egy nagy városa." +]