mirror of
https://github.com/explosion/spaCy.git
synced 2025-07-13 01:32:32 +03:00
South African Setswana language
Please accept the additional of Setswana language
This commit is contained in:
parent
61b04a70d5
commit
24046fef17
18
spacy/lang/tn/__init__.py
Normal file
18
spacy/lang/tn/__init__.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
from .stop_words import STOP_WORDS
|
||||||
|
from .lex_attrs import LEX_ATTRS
|
||||||
|
from .punctuation import TOKENIZER_INFIXES
|
||||||
|
from ...language import Language
|
||||||
|
|
||||||
|
|
||||||
|
class SetswanaDefaults(Language.Defaults):
|
||||||
|
suffixes = TOKENIZER_SUFFIXES
|
||||||
|
stop_words = STOP_WORDS
|
||||||
|
lex_attr_getters = LEX_ATTRS
|
||||||
|
|
||||||
|
|
||||||
|
class Setswana(Language):
|
||||||
|
lang = "tn"
|
||||||
|
Defaults = SetswanaDefaults
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ["Setswana"]
|
Loading…
Reference in New Issue
Block a user