Code Monkey home page Code Monkey logo

maru's Introduction

MARu: Morphological Analyzer for Russian

Package version Package license Python versions TravisCI status Code coverage Code quality

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?

https://sociorocketnewsen.files.wordpress.com/2013/10/maru-top.jpg?w=580&h=305&crop=1

  • ✨ 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.

maru's People

Contributors

chomechome avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.