mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 12:18:04 +03:00
19 lines
421 B
Python
19 lines
421 B
Python
from .stop_words import STOP_WORDS
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .punctuation import TOKENIZER_INFIXES
|
|
from ...language import Language
|
|
|
|
|
|
class LigurianDefaults(Language.Defaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
infixes = TOKENIZER_INFIXES
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Ligurian(Language):
|
|
lang = "lij"
|
|
Defaults = LigurianDefaults
|
|
|
|
|
|
__all__ = ["Ligurian"]
|