mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
27 lines
560 B
Python
27 lines
560 B
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .tag_map import TAG_MAP
|
|
|
|
from ...attrs import LANG
|
|
from ...language import Language
|
|
|
|
|
|
class ArmenianDefaults(Language.Defaults):
|
|
lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
|
|
lex_attr_getters[LANG] = lambda text: "hy"
|
|
|
|
lex_attr_getters.update(LEX_ATTRS)
|
|
stop_words = STOP_WORDS
|
|
tag_map = TAG_MAP
|
|
|
|
|
|
class Armenian(Language):
|
|
lang = "hy"
|
|
Defaults = ArmenianDefaults
|
|
|
|
|
|
__all__ = ["Armenian"]
|