mirror of
https://github.com/explosion/spaCy.git
synced 2024-12-26 01:46:28 +03:00
31 lines
716 B
Python
31 lines
716 B
Python
|
# encoding: utf8
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
|
||
|
# import base language data
|
||
|
from .. import language_data as base
|
||
|
|
||
|
|
||
|
# import util functions
|
||
|
from ..language_data import update_exc, strings_to_exc
|
||
|
|
||
|
|
||
|
# import language-specific data from files
|
||
|
from .tag_map import TAG_MAP
|
||
|
from .stop_words import STOP_WORDS
|
||
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS, ORTH_ONLY
|
||
|
|
||
|
|
||
|
TOKENIZER_EXCEPTIONS = dict(TOKENIZER_EXCEPTIONS)
|
||
|
TAG_MAP = dict(TAG_MAP)
|
||
|
STOP_WORDS = set(STOP_WORDS)
|
||
|
|
||
|
|
||
|
# customize tokenizer exceptions
|
||
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(ORTH_ONLY))
|
||
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.EMOTICONS))
|
||
|
|
||
|
|
||
|
# export
|
||
|
__all__ = ["TOKENIZER_EXCEPTIONS", "TAG_MAP", "STOP_WORDS"]
|