Malayalam Morphological Analyzer using Finite State Transducer
Introduction
mlmorph is Malayalam Morphology Analyzer and Generator. It aims to build a morphological model for Malayalam language using Finite State Transducer technology. Specifically, the system is developed using Stuttgart Finite State Toolkit(SFST) formalism and uses [Helsinki Finite-State Technology(HFST)](Helsinki Finite-State Technology) as Toolkit.
Malayalam is a heavily inflected and agglutinated language and the project attempt to iteratively develop a morphological model for it.
For a detailed introduction and explanation of approach, please refer the blog post https://thottingal.in/blog/2017/11/26/towards-a-malayalam-morphology-analyser/
Status
Currently the analyser can parse(or recognize) 80% of words in our test corpora of 50000 Malayalam words. The lexicon prepared is being updated and expanded to include more commonly used words. Morpho-Phonological rules are still being added, even though the common constructs are already added.
- A web interface is available at https://morph.smc.org.in to quickly try out the analyser and generator.
- A spellchecker based on this analyser is being developed. See https://gitlab.com/smc/mlmorph-spellchecker
- A libreoffice extension to use the spellchecker is also being developed. See https://gitlab.com/smc/mlmorph-libreoffice-spellchecker
Installation and usage
The easiest way to start using mlmorph is by installing the python library that comes with the compiled automata.
pip install mlmorph
For API documentation and command line usage, See https://pypi.org/project/mlmorph
For Devlopers
Building from source
You need Helsinki Finite-State Transducer Technology (HFST) to compile and use this analyzer.
The Makefile provided compiles compiles all the sources and produces the binary FSA 'malayalam.a'. Running 'make' should be enough to get started.
In a debian/ubuntu based GNU/Linux, SFST and HFST can be installed as follows
$ sudo apt install sfst hfst python3-libhfst
Usage
Clone or download this git repository to your machine.
Build the FST by
$ make
This will create a file named malayalam.a which is the compiled generator. Individual modules will get also created like num.a which is number generator.
To generatate Malayalam words, use hfst-lookup
$ echo "പേന<n><pl>" | hfst-lookup malayalam.a
> പേന<n><pl> പേനകൾ 0.000000
$ echo "കീശ<n><locative>" | hfst-lookup malayalam.a
> കീശ<n><locative> കീശയിൽ 0.000000
The same analyser can be used inverted to reverse the above operation.
$ hfst-invert malayalam.a > malayalam.g
Two swtich to generate mode, just press enter at prompt without entering any text.
$ echo "ആശയാൽ" | hfst-lookup malayalam.g
> ആശയാൽ ആശ<n><instrumental> 0.000000For more convinient usage, a python wrapper around this is provided. See section below. Any words that is not known to the model will be rejected.
To generate 10 random strings the FST can produce:
hfst-fst2strings malayalam.a -r 10
Tests
The analyser is being developed with lot of tests. To run tests :
$ make testAnalysing numbers
The textual form of Malayalam numbers has an interesting characterstic that it is a limited vocalbulary set creating infinite number of words by agglutination of number parts. A number like 12345 is written as പന്ത്രണ്ടായിരത്തിമുന്നൂറ്റിനാൽപത്തഞ്ച്. This is composed from 12-പന്ത്രണ്ട്, 1000=ആയിരം, 300=മുന്നൂറ്, 40-നാല്പത്, 5 - അഞ്ച്. Agglutination happens at 5 places in this word. When agglutination happens the morpheme boundaries change in left side or right side or both. The number module of mlmorph analyser is powerful enough to analyse and generate any arbitrary number in its text format(or aims to do so). Some examples are given below.
For more details and a demo, please refer https://thottingal.in/blog/2017/12/10/number-spellout-and-generation-in-malayalam-using-morphology-analyser/
Python Interface
See https://pypi.org/project/mlmorph
License
mlmorph is under MIT license.