Morphological Analyzer for Russian 💬
Project description
MARu is a morphological analyzer for Russian, written in Python, powered by machine learning and neural networks.
Installation
$ pipenv install maru
or
$ pipenv install maru[gpu]
for installation with Tensorflow GPU support.
You can also just use pip (though you should definitely take a look at pipenv).
What’s in the Box?
✨ Morphological analysis with contextual disambiguation using Universal Dependencies tags.
🌈 Trained via various machine learning methods: linear model, CRF, deep neural network.
🔮 Speed/accuracy trade-off between different methods.
🍰 Vocabulary-based lemmatization, built on top of pymorphy2.
Usage
First, create a maru.analyzer.Analyzer object using the factory method:
>> import maru
>> analyzer = maru.get_analyzer(tagger='crf', lemmatizer='pymorphy')
Then, analyze some text:
>> analyzed = analyzer.analyze(['мама', 'мыла', 'раму']) # note that this returns an iterator
>> for morph in analyzed:
... print(morph)
...
Morph(word='мама', lemma='мама', tag=Tag(pos=NOUN,animacy=Anim,case=Nom,gender=Fem,number=Sing))
Morph(word='мыла', lemma='мыть', tag=Tag(pos=VERB,aspect=Imp,gender=Fem,mood=Ind,number=Sing,tense=Past,verbform=Fin,voice=Act))
Morph(word='раму', lemma='рама', tag=Tag(pos=NOUN,animacy=Inan,case=Acc,gender=Fem,number=Sing))
Other available taggers that you can pass to maru.get_analyzer are 'linear', 'rnn', and 'pymorphy'. Another available lemmatizer is 'dummy' (no actual lemmatization, slightly improves inference speed).
You can refer to the following table when choosing an algorithm to use:
Full tag accuracy (per token, per sentence) and inference speed |
|||||||||
---|---|---|---|---|---|---|---|---|---|
Tagger |
News (Lenta) |
Social (VK) |
Literature (JZ) |
All |
Inference speed |
||||
Pymorphy |
77.24% |
12.85% |
72.71% |
18.84% |
73.16% |
10.91% |
74.43% |
14.85% |
49000 tokens/sec |
Linear |
95.00% |
61.73% |
91.64% |
59.51% |
93.00% |
57.87% |
93.26% |
59.62% |
26500 tokens/sec |
CRF |
95.55% |
64.53% |
91.82% |
61.27% |
93.59% |
63.96% |
93.70% |
62.95% |
5500 tokens/sec |
RNN |
97.65% |
79.33% |
95.43% |
75.88% |
95.84% |
73.60% |
96.34% |
76.14% |
1000 tokens/sec |
Accuracy was measured on the MorphoRuEval-2017 test set. Inference speed was estimated on a system with 32 GB RAM, Intel i7 6700K as CPU and GeForce GTX 1060 as GPU. RNN performance is given for single sentence inference on GPU. An addition of batch inference in the future can greatly improve it.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file maru-0.2.0.tar.gz
.
File metadata
- Download URL: maru-0.2.0.tar.gz
- Upload date:
- Size: 43.4 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.6.8 Darwin/20.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49472b5837b97776ca432fcb7a02802d48750de2b7b316f075027467cadb78ba |
|
MD5 | d2efbc1d68fe75fb9b85cb685fdc4005 |
|
BLAKE2b-256 | edbc64e8fbf0bf545842268f7327bd43768be6cbf13897680c7d05583dfb1396 |
File details
Details for the file maru-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: maru-0.2.0-py3-none-any.whl
- Upload date:
- Size: 43.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.6.8 Darwin/20.2.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d2296433ff95558c40deac1a25305f6c7a7c6a5fffea80684d172448079fecec |
|
MD5 | b78907e5419356964c3b8f12171a1dce |
|
BLAKE2b-256 | b9686e8f5a0fdf4ef494f115f75762738a8b0c6f62c7dce8d5afd11c4db78756 |