mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
47 lines
1.2 KiB
Python
47 lines
1.2 KiB
Python
from typing import Optional
|
|
from thinc.api import Model
|
|
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .syntax_iterators import SYNTAX_ITERATORS
|
|
from .punctuation import TOKENIZER_PREFIXES, TOKENIZER_SUFFIXES, TOKENIZER_INFIXES
|
|
from .lemmatizer import GreekLemmatizer
|
|
from ...lookups import Lookups
|
|
from ...language import Language
|
|
|
|
|
|
class GreekDefaults(Language.Defaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
prefixes = TOKENIZER_PREFIXES
|
|
suffixes = TOKENIZER_SUFFIXES
|
|
infixes = TOKENIZER_INFIXES
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
syntax_iterators = SYNTAX_ITERATORS
|
|
|
|
|
|
class Greek(Language):
|
|
lang = "el"
|
|
Defaults = GreekDefaults
|
|
|
|
|
|
@Greek.factory(
|
|
"lemmatizer",
|
|
assigns=["token.lemma"],
|
|
default_config={"model": None, "mode": "rule", "lookups": None},
|
|
default_score_weights={"lemma_acc": 1.0},
|
|
)
|
|
def make_lemmatizer(
|
|
nlp: Language,
|
|
model: Optional[Model],
|
|
name: str,
|
|
mode: str,
|
|
lookups: Optional[Lookups],
|
|
):
|
|
lookups = GreekLemmatizer.load_lookups(nlp.lang, mode, lookups)
|
|
return GreekLemmatizer(nlp.vocab, model, name, mode=mode, lookups=lookups)
|
|
|
|
|
|
__all__ = ["Greek"]
|