mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-13 13:17:06 +03:00
31 lines
641 B
Python
31 lines
641 B
Python
from .stop_words import STOP_WORDS
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from ...language import Language
|
|
from ...util import load_config_from_str
|
|
|
|
|
|
DEFAULT_CONFIG = """
|
|
[initialize]
|
|
|
|
[initialize.lookups]
|
|
@misc = "spacy.LookupsDataLoader.v1"
|
|
lang = ${nlp.lang}
|
|
tables = ["lexeme_norm"]
|
|
"""
|
|
|
|
|
|
class SerbianDefaults(Language.Defaults):
|
|
config = load_config_from_str(DEFAULT_CONFIG)
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Serbian(Language):
|
|
lang = "sr"
|
|
Defaults = SerbianDefaults
|
|
|
|
|
|
__all__ = ["Serbian"]
|