2017-12-02 01:36:05 +03:00
|
|
|
# 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)
|
|
|
|
"""
|
|
|
|
|
|
|
|
|
2018-07-24 19:45:40 +03:00
|
|
|
sentences = [
|
2017-12-02 01:36:05 +03:00
|
|
|
"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",
|
2017-12-02 01:36:05 +03:00
|
|
|
]
|