mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
59 lines
1.5 KiB
Python
59 lines
1.5 KiB
Python
from typing import Set, Dict, Callable, Any
|
|
from thinc.api import Config
|
|
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .punctuation import TOKENIZER_PREFIXES, TOKENIZER_INFIXES
|
|
from .punctuation import TOKENIZER_SUFFIXES
|
|
from .lemmatizer import DutchLemmatizer
|
|
from ...language import Language
|
|
from ...util import registry
|
|
|
|
|
|
DEFAULT_CONFIG = """
|
|
[nlp]
|
|
lang = "nl"
|
|
stop_words = {"@language_data": "spacy.nl.stop_words"}
|
|
lex_attr_getters = {"@language_data": "spacy.nl.lex_attr_getters"}
|
|
|
|
[nlp.lemmatizer]
|
|
@lemmatizers = "spacy.DutchLemmatizer.v1"
|
|
|
|
[nlp.lemmatizer.data]
|
|
@language_data = "spacy-lookups-data"
|
|
lang = ${nlp:lang}
|
|
tables = ["lemma_rules", "lemma_index", "lemma_exc", "lemma_lookup"]
|
|
"""
|
|
|
|
|
|
@registry.language_data("spacy.nl.stop_words")
|
|
def stop_words() -> Set[str]:
|
|
return STOP_WORDS
|
|
|
|
|
|
@registry.language_data("spacy.nl.lex_attr_getters")
|
|
def lex_attr_getters() -> Dict[int, Callable[[str], Any]]:
|
|
return LEX_ATTRS
|
|
|
|
|
|
@registry.lemmatizers("spacy.DutchLemmatizer.v1")
|
|
def create_dutch_lemmatizer(data: Dict[str, dict] = {}) -> DutchLemmatizer:
|
|
return DutchLemmatizer(data=data)
|
|
|
|
|
|
class DutchDefaults(Language.Defaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
prefixes = TOKENIZER_PREFIXES
|
|
infixes = TOKENIZER_INFIXES
|
|
suffixes = TOKENIZER_SUFFIXES
|
|
|
|
|
|
class Dutch(Language):
|
|
lang = "nl"
|
|
Defaults = DutchDefaults
|
|
default_config = Config().from_str(DEFAULT_CONFIG)
|
|
|
|
|
|
__all__ = ["Dutch"]
|