mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-10 19:57:17 +03:00
17 lines
296 B
Python
17 lines
296 B
Python
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from ...language import Language
|
|
|
|
|
|
class HindiDefaults(Language.Defaults):
|
|
stop_words = STOP_WORDS
|
|
lex_attr_getters = LEX_ATTRS
|
|
|
|
|
|
class Hindi(Language):
|
|
lang = "hi"
|
|
Defaults = HindiDefaults
|
|
|
|
|
|
__all__ = ["Hindi"]
|