You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
420 B
15 lines
420 B
"""
|
|
Example sentences to test spaCy and its language models.
|
|
>>> from spacy.lang.tn.examples import sentences
|
|
>>> docs = nlp.pipe(sentences)
|
|
"""
|
|
|
|
sentences = [
|
|
"Apple e nyaka go reka JSE ka tlhwatlhwa ta R1 billion",
|
|
"Johannesburg ke toropo e kgolo mo Afrika Borwa.",
|
|
"O ko kae?",
|
|
"ke mang presidente ya Afrika Borwa?",
|
|
"ke eng toropo kgolo ya Afrika Borwa?",
|
|
"Nelson Mandela o belegwe leng?",
|
|
]
|