mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-12 04:38:28 +03:00
5ca853bee0
* changed tag_map, morph_rules, lemmatizer for Norwegian * Move unicode declaration up Hopefully fixes test failure on Python 2 * Update CONTRIBUTOR_AGREEMENT.md * Move unicode declarations Hopefully fixes test this time * Revert "Merge remote-tracking branch 'origin/patch-1'" This reverts commitf5ccd5dd0d
, reversing changes made todd07e180ea
. * Update contributor agreement [ci skip]
23 lines
854 B
Python
23 lines
854 B
Python
# coding: utf8
|
|
|
|
#structure copied from the English lemmatizer
|
|
from __future__ import unicode_literals
|
|
|
|
from .lookup import LOOKUP
|
|
from ._adjectives_wordforms import ADJECTIVES_WORDFORMS
|
|
from ._adverbs_wordforms import ADVERBS_WORDFORMS
|
|
from ._nouns_wordforms import NOUNS_WORDFORMS
|
|
from ._verbs_wordforms import VERBS_WORDFORMS
|
|
from ._lemma_rules import ADJECTIVE_RULES, NOUN_RULES, VERB_RULES, PUNCT_RULES
|
|
from ._verbs import VERBS
|
|
from ._nouns import NOUNS
|
|
from ._adjectives import ADJECTIVES
|
|
from ._adverbs import ADVERBS
|
|
|
|
LEMMA_INDEX = {'adj': ADJECTIVES, 'adv': ADVERBS, 'noun': NOUNS, 'verb': VERBS}
|
|
|
|
LEMMA_EXC = {'adj': ADJECTIVES_WORDFORMS, 'adv': ADVERBS_WORDFORMS, 'noun': NOUNS_WORDFORMS,
|
|
'verb': VERBS_WORDFORMS}
|
|
|
|
LEMMA_RULES = {'adj': ADJECTIVE_RULES, 'noun': NOUN_RULES, 'verb': VERB_RULES,
|
|
'punct': PUNCT_RULES} |