2017-03-12 12:07:28 +00:00
|
|
|
# coding: utf8
|
2016-12-07 22:07:43 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2016-12-20 21:28:20 +00:00
|
|
|
from spacy.language_data import strings_to_exc, update_exc
|
2017-01-08 19:40:33 +00:00
|
|
|
from .punctuation import *
|
2016-12-20 21:28:20 +00:00
|
|
|
from .stop_words import STOP_WORDS
|
|
|
|
from .tokenizer_exceptions import ABBREVIATIONS
|
|
|
|
from .tokenizer_exceptions import OTHER_EXC
|
|
|
|
from .. import language_data as base
|
2016-12-07 22:07:43 +00:00
|
|
|
|
2016-12-20 21:28:20 +00:00
|
|
|
STOP_WORDS = set(STOP_WORDS)
|
2016-12-07 22:07:43 +00:00
|
|
|
|
2017-01-08 19:36:00 +00:00
|
|
|
TOKENIZER_EXCEPTIONS = strings_to_exc(base.EMOTICONS)
|
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(base.ABBREVIATIONS))
|
2016-12-20 21:28:20 +00:00
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(OTHER_EXC))
|
|
|
|
update_exc(TOKENIZER_EXCEPTIONS, strings_to_exc(ABBREVIATIONS))
|
2016-12-07 22:07:43 +00:00
|
|
|
|
2017-01-14 15:30:11 +00:00
|
|
|
TOKENIZER_PREFIXES = TOKENIZER_PREFIXES
|
2017-01-14 14:51:59 +00:00
|
|
|
TOKENIZER_SUFFIXES = TOKENIZER_SUFFIXES
|
2017-01-08 19:40:33 +00:00
|
|
|
TOKENIZER_INFIXES = TOKENIZER_INFIXES
|
|
|
|
|
2016-12-20 21:28:20 +00:00
|
|
|
__all__ = ["TOKENIZER_EXCEPTIONS", "STOP_WORDS", "TOKENIZER_PREFIXES", "TOKENIZER_SUFFIXES", "TOKENIZER_INFIXES"]
|