mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-11 04:08:09 +03:00
cca8651fc8
* [Bulgarian] Add tokenizer exceptions and like_num for Bulgarian * [Bulgarian] Add tokenizer exceptions and like_num for Bulgarian
27 lines
672 B
Python
27 lines
672 B
Python
from .stop_words import STOP_WORDS
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .lex_attrs import LEX_ATTRS
|
|
from ..tokenizer_exceptions import BASE_EXCEPTIONS
|
|
|
|
from ...language import Language
|
|
from ...attrs import LANG
|
|
from ...util import update_exc
|
|
|
|
|
|
class BulgarianDefaults(Language.Defaults):
|
|
lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
|
|
lex_attr_getters[LANG] = lambda text: "bg"
|
|
|
|
lex_attr_getters.update(LEX_ATTRS)
|
|
|
|
stop_words = STOP_WORDS
|
|
tokenizer_exceptions = update_exc(BASE_EXCEPTIONS, TOKENIZER_EXCEPTIONS)
|
|
|
|
|
|
class Bulgarian(Language):
|
|
lang = "bg"
|
|
Defaults = BulgarianDefaults
|
|
|
|
|
|
__all__ = ["Bulgarian"]
|