mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
c09d2fa25b
* luganda language extension * __init__.py changes * New enhancements * Lexical attribute changed * punctuaction and sentence additions * Remove comment header * Fix typos, reformat * reformated version * Add tokenizer test * Remove contractions from stop words * Format * Add Luganda to website Co-authored-by: Adriane Boyd <adrianeboyd@gmail.com>
18 lines
522 B
Python
18 lines
522 B
Python
"""
|
||
Example sentences to test spaCy and its language models.
|
||
|
||
>>> from spacy.lang.lg.examples import sentences
|
||
>>> docs = nlp.pipe(sentences)
|
||
"""
|
||
|
||
sentences = [
|
||
"Mpa ebyafaayo ku byalo Nakatu ne Nkajja",
|
||
"Okuyita Ttembo kitegeeza kugwa ddalu",
|
||
"Ekifumu kino kyali kya mulimu ki?",
|
||
"Ekkovu we liyise wayitibwa mukululo",
|
||
"Akola mulimu ki oguvaamu ssente?",
|
||
"Emisumaali egikomerera embaawo giyitibwa nninga",
|
||
"Abooluganda ab’emmamba ababiri",
|
||
"Ekisaawe ky'ebyenjigiriza kya mugaso nnyo",
|
||
]
|