spaCy/spacy/lang/bg/examples.py
2019-09-15 17:56:40 +02:00

17 lines
692 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# coding: utf8
from __future__ import unicode_literals
"""
Example sentences to test spaCy and its language models.
>>> from spacy.lang.bg.examples import sentences
>>> docs = nlp.pipe(sentences)
"""
sentences = [
"Епъл иска да купи английски стартъп за 1 милиард долара."
"Автономните коли прехвърлят застрахователната отговорност към производителите."
"Сан Франциско обмисля забрана на роботи доставящи по тротоари. "
"Лондон е голям град в Обединеното Кралство."
]