diff --git a/spacy/lang/nl/examples.py b/spacy/lang/nl/examples.py new file mode 100644 index 000000000..6a1290728 --- /dev/null +++ b/spacy/lang/nl/examples.py @@ -0,0 +1,18 @@ +# coding: utf8 +from __future__ import unicode_literals + + +""" +Example sentences to test spaCy and its language models. + +>>> from spacy.lang.nl.examples import sentences +>>> docs = nlp.pipe(sentences) +""" + + +examples = [ + "Apple overweegt om voor 1 miljard een U.K. startup te kopen", + "Autonome auto's verschuiven de verzekeringverantwoordelijkheid naar producenten", + "San Francisco overweegt robots op voetpaden te verbieden", + "Londen is een grote stad in het Verenigd Koninkrijk" +]