mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
17 lines
333 B
Python
17 lines
333 B
Python
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .stop_words import STOP_WORDS
|
|
from ...language import Language
|
|
|
|
|
|
class IrishDefaults(Language.Defaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
stop_words = STOP_WORDS
|
|
|
|
|
|
class Irish(Language):
|
|
lang = "ga"
|
|
Defaults = IrishDefaults
|
|
|
|
|
|
__all__ = ["Irish"]
|