mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 20:28:20 +03:00
19 lines
378 B
Python
19 lines
378 B
Python
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from .punctuation import TOKENIZER_SUFFIXES
|
|
from ...language import Language
|
|
|
|
|
|
class BasqueDefaults(Language.Defaults):
|
|
suffixes = TOKENIZER_SUFFIXES
|
|
stop_words = STOP_WORDS
|
|
lex_attr_getters = LEX_ATTRS
|
|
|
|
|
|
class Basque(Language):
|
|
lang = "eu"
|
|
Defaults = BasqueDefaults
|
|
|
|
|
|
__all__ = ["Basque"]
|