mirror of
https://github.com/explosion/spaCy.git
synced 2025-01-26 09:14:32 +03:00
2f981d5af1
Remove corpus-specific tag maps from the language data for languages without custom tokenizers. For languages with custom word segmenters that also provide tags (Japanese and Korean), the tag maps for the custom tokenizers are kept as the default. The default tag maps for languages without custom tokenizers are now the default tag map from `lang/tag_map/py`, UPOS -> UPOS.
21 lines
444 B
Python
21 lines
444 B
Python
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
|
|
from ...language import Language
|
|
from ...attrs import LANG
|
|
|
|
|
|
class SlovakDefaults(Language.Defaults):
|
|
lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
|
|
lex_attr_getters.update(LEX_ATTRS)
|
|
lex_attr_getters[LANG] = lambda text: "sk"
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Slovak(Language):
|
|
lang = "sk"
|
|
Defaults = SlovakDefaults
|
|
|
|
|
|
__all__ = ["Slovak"]
|