mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 09:56:28 +03:00
34 lines
766 B
Python
34 lines
766 B
Python
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .punctuation import TOKENIZER_INFIXES, TOKENIZER_SUFFIXES
|
|
from .stop_words import STOP_WORDS
|
|
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 DanishDefaults(Language.Defaults):
|
|
config = load_config_from_str(DEFAULT_CONFIG)
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
infixes = TOKENIZER_INFIXES
|
|
suffixes = TOKENIZER_SUFFIXES
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Danish(Language):
|
|
lang = "da"
|
|
Defaults = DanishDefaults
|
|
|
|
|
|
__all__ = ["Danish"]
|