spaCy/spacy/lang/nl/examples.py

15 lines
441 B
Python
Raw Normal View History

"""
Example sentences to test spaCy and its language models.
>>> from spacy.lang.nl.examples import sentences
>>> docs = nlp.pipe(sentences)
"""
2018-07-24 19:45:40 +03:00
sentences = [
"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",
2019-08-20 18:36:34 +03:00
"Londen is een grote stad in het Verenigd Koninkrijk",
]