mirror of https://github.com/explosion/spaCy.git
19 lines
437 B
Python
19 lines
437 B
Python
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from ...language import Language, BaseDefaults
|
|
|
|
|
|
class AncientGreekDefaults(BaseDefaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
lex_attr_getters = LEX_ATTRS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class AncientGreek(Language):
|
|
lang = "grc"
|
|
Defaults = AncientGreekDefaults
|
|
|
|
|
|
__all__ = ["AncientGreek"]
|