mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
c34420794a
* added support for nepali lang * added examples and test files * added spacy contributor agreement
24 lines
527 B
Python
24 lines
527 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
|
|
from ...language import Language
|
|
from ...attrs import LANG
|
|
|
|
|
|
class NepaliDefaults(Language.Defaults):
|
|
lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
|
|
lex_attr_getters.update(LEX_ATTRS)
|
|
lex_attr_getters[LANG] = lambda text: "ne" # Nepali language ISO code
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Nepali(Language):
|
|
lang = "ne"
|
|
Defaults = NepaliDefaults
|
|
|
|
|
|
__all__ = ["Nepali"]
|