2017-03-12 15:07:28 +03:00
|
|
|
# coding: utf8
|
2017-05-08 16:51:39 +03:00
|
|
|
from __future__ import unicode_literals
|
2016-11-24 17:56:38 +03:00
|
|
|
|
2017-05-08 16:51:39 +03:00
|
|
|
from .stop_words import STOP_WORDS
|
2017-09-26 17:39:15 +03:00
|
|
|
from .lex_attrs import LEX_ATTRS
|
2017-11-05 15:48:07 +03:00
|
|
|
from .tag_map import TAG_MAP
|
2019-04-03 15:13:26 +03:00
|
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
|
|
from .punctuation import TOKENIZER_INFIXES, TOKENIZER_SUFFIXES
|
2019-08-22 15:21:32 +03:00
|
|
|
from .lemmatizer import DutchLemmatizer
|
2017-05-08 23:29:04 +03:00
|
|
|
from ..tokenizer_exceptions import BASE_EXCEPTIONS
|
2017-06-03 23:29:21 +03:00
|
|
|
from ..norm_exceptions import BASE_NORMS
|
2017-05-08 23:29:04 +03:00
|
|
|
from ...language import Language
|
2019-10-01 22:36:04 +03:00
|
|
|
from ...lookups import Lookups
|
2017-06-03 23:29:21 +03:00
|
|
|
from ...attrs import LANG, NORM
|
2019-10-01 22:36:04 +03:00
|
|
|
from ...util import update_exc, add_lookups
|
2017-05-08 16:51:39 +03:00
|
|
|
|
2016-11-24 17:56:38 +03:00
|
|
|
|
2017-05-20 20:02:27 +03:00
|
|
|
class DutchDefaults(Language.Defaults):
|
|
|
|
lex_attr_getters = dict(Language.Defaults.lex_attr_getters)
|
2017-09-26 17:39:15 +03:00
|
|
|
lex_attr_getters.update(LEX_ATTRS)
|
2019-04-09 12:40:19 +03:00
|
|
|
lex_attr_getters[LANG] = lambda text: "nl"
|
|
|
|
lex_attr_getters[NORM] = add_lookups(
|
|
|
|
Language.Defaults.lex_attr_getters[NORM], BASE_NORMS
|
|
|
|
)
|
2019-04-03 15:13:26 +03:00
|
|
|
tokenizer_exceptions = update_exc(BASE_EXCEPTIONS, TOKENIZER_EXCEPTIONS)
|
2017-10-11 16:34:55 +03:00
|
|
|
stop_words = STOP_WORDS
|
2017-11-05 15:48:07 +03:00
|
|
|
tag_map = TAG_MAP
|
2019-04-03 15:13:26 +03:00
|
|
|
infixes = TOKENIZER_INFIXES
|
|
|
|
suffixes = TOKENIZER_SUFFIXES
|
|
|
|
|
|
|
|
@classmethod
|
2019-08-22 15:21:32 +03:00
|
|
|
def create_lemmatizer(cls, nlp=None, lookups=None):
|
2019-10-01 22:36:04 +03:00
|
|
|
if lookups is None:
|
|
|
|
lookups = Lookups()
|
|
|
|
return DutchLemmatizer(lookups)
|
2016-11-24 17:56:38 +03:00
|
|
|
|
|
|
|
|
2017-05-20 20:02:27 +03:00
|
|
|
class Dutch(Language):
|
2019-04-09 12:40:19 +03:00
|
|
|
lang = "nl"
|
2017-05-20 20:02:27 +03:00
|
|
|
Defaults = DutchDefaults
|
2017-05-03 12:01:42 +03:00
|
|
|
|
|
|
|
|
2019-04-09 12:40:19 +03:00
|
|
|
__all__ = ["Dutch"]
|