mirror of
https://github.com/explosion/spaCy.git
synced 2025-03-15 15:42:24 +03:00
* Improve load_language_data helper * WIP: Add Lookups implementation * Start moving lemma data over to JSON * WIP: move data over for more languages * Convert more languages * Fix lemmatizer fixtures in tests * Finish conversion * Auto-format JSON files * Fix test for now * Make sure tables are stored on instance * Update docstrings * Update docstrings and errors * Update test * Add Lookups.__len__ * Add serialization methods * Add Lookups.remove_table * Use msgpack for serialization to disk * Fix file exists check * Try using OrderedDict for everything * Update .flake8 [ci skip] * Try fixing serialization * Update test_lookups.py * Update test_serialize_vocab_strings.py * Lookups / Tables now work This implements the stubs in the Lookups/Table classes. Currently this is in Cython but with no type declarations, so that could be improved. * Add lookups to setup.py * Actually add lookups pyx The previous commit added the old py file... * Lookups work-in-progress * Move from pyx back to py * Add string based lookups, fix serialization * Update tests, language/lemmatizer to work with string lookups There are some outstanding issues here: - a pickling-related test fails due to the bloom filter - some custom lemmatizers (fr/nl at least) have issues More generally, there's a question of how to deal with the case where you have a string but want to use the lookup table. Currently the table allows access by string or id, but that's getting pretty awkward. * Change lemmatizer lookup method to pass (orth, string) * Fix token lookup * Fix French lookup * Fix lt lemmatizer test * Fix Dutch lemmatizer * Fix lemmatizer lookup test This was using a normal dict instead of a Table, so checks for the string instead of an integer key failed. * Make uk/nl/ru lemmatizer lookup methods consistent The mentioned tokenizers all have their own implementation of the `lookup` method, which accesses a `Lookups` table. The way that was called in `token.pyx` was changed so this should be updated to have the same arguments as `lookup` in `lemmatizer.py` (specificially (orth/id, string)). Prior to this change tests weren't failing, but there would probably be issues with normal use of a model. More tests should proably be added. Additionally, the language-specific `lookup` implementations seem like they might not be needed, since they handle things like lower-casing that aren't actually language specific. * Make recently added Greek method compatible * Remove redundant class/method Leftovers from a merge not cleaned up adequately.
211 lines
6.7 KiB
Python
211 lines
6.7 KiB
Python
# coding: utf8
|
|
from __future__ import unicode_literals
|
|
|
|
from ...symbols import ADJ, DET, NOUN, NUM, PRON, PROPN, PUNCT, VERB, POS
|
|
from ...lemmatizer import Lemmatizer
|
|
from ...compat import unicode_
|
|
|
|
|
|
class RussianLemmatizer(Lemmatizer):
|
|
_morph = None
|
|
|
|
def __init__(self):
|
|
super(RussianLemmatizer, self).__init__()
|
|
try:
|
|
from pymorphy2 import MorphAnalyzer
|
|
except ImportError:
|
|
raise ImportError(
|
|
"The Russian lemmatizer requires the pymorphy2 library: "
|
|
'try to fix it with "pip install pymorphy2==0.8" '
|
|
'or "pip install git+https://github.com/kmike/pymorphy2.git pymorphy2-dicts-uk"'
|
|
"if you need Ukrainian too"
|
|
)
|
|
if RussianLemmatizer._morph is None:
|
|
RussianLemmatizer._morph = MorphAnalyzer()
|
|
|
|
def __call__(self, string, univ_pos, morphology=None):
|
|
univ_pos = self.normalize_univ_pos(univ_pos)
|
|
if univ_pos == "PUNCT":
|
|
return [PUNCT_RULES.get(string, string)]
|
|
|
|
if univ_pos not in ("ADJ", "DET", "NOUN", "NUM", "PRON", "PROPN", "VERB"):
|
|
# Skip unchangeable pos
|
|
return [string.lower()]
|
|
|
|
analyses = self._morph.parse(string)
|
|
filtered_analyses = []
|
|
for analysis in analyses:
|
|
if not analysis.is_known:
|
|
# Skip suggested parse variant for unknown word for pymorphy
|
|
continue
|
|
analysis_pos, _ = oc2ud(str(analysis.tag))
|
|
if analysis_pos == univ_pos or (
|
|
analysis_pos in ("NOUN", "PROPN") and univ_pos in ("NOUN", "PROPN")
|
|
):
|
|
filtered_analyses.append(analysis)
|
|
|
|
if not len(filtered_analyses):
|
|
return [string.lower()]
|
|
if morphology is None or (len(morphology) == 1 and POS in morphology):
|
|
return list(set([analysis.normal_form for analysis in filtered_analyses]))
|
|
|
|
if univ_pos in ("ADJ", "DET", "NOUN", "PROPN"):
|
|
features_to_compare = ["Case", "Number", "Gender"]
|
|
elif univ_pos == "NUM":
|
|
features_to_compare = ["Case", "Gender"]
|
|
elif univ_pos == "PRON":
|
|
features_to_compare = ["Case", "Number", "Gender", "Person"]
|
|
else: # VERB
|
|
features_to_compare = [
|
|
"Aspect",
|
|
"Gender",
|
|
"Mood",
|
|
"Number",
|
|
"Tense",
|
|
"VerbForm",
|
|
"Voice",
|
|
]
|
|
|
|
analyses, filtered_analyses = filtered_analyses, []
|
|
for analysis in analyses:
|
|
_, analysis_morph = oc2ud(str(analysis.tag))
|
|
for feature in features_to_compare:
|
|
if (
|
|
feature in morphology
|
|
and feature in analysis_morph
|
|
and morphology[feature] != analysis_morph[feature]
|
|
):
|
|
break
|
|
else:
|
|
filtered_analyses.append(analysis)
|
|
|
|
if not len(filtered_analyses):
|
|
return [string.lower()]
|
|
return list(set([analysis.normal_form for analysis in filtered_analyses]))
|
|
|
|
@staticmethod
|
|
def normalize_univ_pos(univ_pos):
|
|
if isinstance(univ_pos, unicode_):
|
|
return univ_pos.upper()
|
|
|
|
symbols_to_str = {
|
|
ADJ: "ADJ",
|
|
DET: "DET",
|
|
NOUN: "NOUN",
|
|
NUM: "NUM",
|
|
PRON: "PRON",
|
|
PROPN: "PROPN",
|
|
PUNCT: "PUNCT",
|
|
VERB: "VERB",
|
|
}
|
|
if univ_pos in symbols_to_str:
|
|
return symbols_to_str[univ_pos]
|
|
return None
|
|
|
|
def is_base_form(self, univ_pos, morphology=None):
|
|
# TODO
|
|
raise NotImplementedError
|
|
|
|
def det(self, string, morphology=None):
|
|
return self(string, "det", morphology)
|
|
|
|
def num(self, string, morphology=None):
|
|
return self(string, "num", morphology)
|
|
|
|
def pron(self, string, morphology=None):
|
|
return self(string, "pron", morphology)
|
|
|
|
def lookup(self, orth, string):
|
|
analyses = self._morph.parse(string)
|
|
if len(analyses) == 1:
|
|
return analyses[0].normal_form
|
|
return string
|
|
|
|
|
|
def oc2ud(oc_tag):
|
|
gram_map = {
|
|
"_POS": {
|
|
"ADJF": "ADJ",
|
|
"ADJS": "ADJ",
|
|
"ADVB": "ADV",
|
|
"Apro": "DET",
|
|
"COMP": "ADJ", # Can also be an ADV - unchangeable
|
|
"CONJ": "CCONJ", # Can also be a SCONJ - both unchangeable ones
|
|
"GRND": "VERB",
|
|
"INFN": "VERB",
|
|
"INTJ": "INTJ",
|
|
"NOUN": "NOUN",
|
|
"NPRO": "PRON",
|
|
"NUMR": "NUM",
|
|
"NUMB": "NUM",
|
|
"PNCT": "PUNCT",
|
|
"PRCL": "PART",
|
|
"PREP": "ADP",
|
|
"PRTF": "VERB",
|
|
"PRTS": "VERB",
|
|
"VERB": "VERB",
|
|
},
|
|
"Animacy": {"anim": "Anim", "inan": "Inan"},
|
|
"Aspect": {"impf": "Imp", "perf": "Perf"},
|
|
"Case": {
|
|
"ablt": "Ins",
|
|
"accs": "Acc",
|
|
"datv": "Dat",
|
|
"gen1": "Gen",
|
|
"gen2": "Gen",
|
|
"gent": "Gen",
|
|
"loc2": "Loc",
|
|
"loct": "Loc",
|
|
"nomn": "Nom",
|
|
"voct": "Voc",
|
|
},
|
|
"Degree": {"COMP": "Cmp", "Supr": "Sup"},
|
|
"Gender": {"femn": "Fem", "masc": "Masc", "neut": "Neut"},
|
|
"Mood": {"impr": "Imp", "indc": "Ind"},
|
|
"Number": {"plur": "Plur", "sing": "Sing"},
|
|
"NumForm": {"NUMB": "Digit"},
|
|
"Person": {"1per": "1", "2per": "2", "3per": "3", "excl": "2", "incl": "1"},
|
|
"Tense": {"futr": "Fut", "past": "Past", "pres": "Pres"},
|
|
"Variant": {"ADJS": "Brev", "PRTS": "Brev"},
|
|
"VerbForm": {
|
|
"GRND": "Conv",
|
|
"INFN": "Inf",
|
|
"PRTF": "Part",
|
|
"PRTS": "Part",
|
|
"VERB": "Fin",
|
|
},
|
|
"Voice": {"actv": "Act", "pssv": "Pass"},
|
|
"Abbr": {"Abbr": "Yes"},
|
|
}
|
|
|
|
pos = "X"
|
|
morphology = dict()
|
|
unmatched = set()
|
|
|
|
grams = oc_tag.replace(" ", ",").split(",")
|
|
for gram in grams:
|
|
match = False
|
|
for categ, gmap in sorted(gram_map.items()):
|
|
if gram in gmap:
|
|
match = True
|
|
if categ == "_POS":
|
|
pos = gmap[gram]
|
|
else:
|
|
morphology[categ] = gmap[gram]
|
|
if not match:
|
|
unmatched.add(gram)
|
|
|
|
while len(unmatched) > 0:
|
|
gram = unmatched.pop()
|
|
if gram in ("Name", "Patr", "Surn", "Geox", "Orgn"):
|
|
pos = "PROPN"
|
|
elif gram == "Auxt":
|
|
pos = "AUX"
|
|
elif gram == "Pltm":
|
|
morphology["Number"] = "Ptan"
|
|
|
|
return pos, morphology
|
|
|
|
|
|
PUNCT_RULES = {"«": '"', "»": '"'}
|