mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
17 lines
304 B
Python
17 lines
304 B
Python
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from ...language import Language
|
|
|
|
|
|
class SinhalaDefaults(Language.Defaults):
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Sinhala(Language):
|
|
lang = "si"
|
|
Defaults = SinhalaDefaults
|
|
|
|
|
|
__all__ = ["Sinhala"]
|