Skip to main content

Rule-based, linguist-friendly (and rather slow) morphological analysis

Project description

uniparser-morph

This is yet another rule-based morphological analysis tool. No built-in rules are provided; you will have to write some if you want to parse texts in your language. Uniparser-morph was developed primarily for under-resourced languages, which don't have enough data for training statistical parsers. Here's how it's different from other similar tools:

  • It is designed to be usable by theoretical linguists with no prior knowledge of NLP (and has been successfully used by them with minimal guidance). So it's not just another way of defining an FST; the way you describe lexemes and morphology resembles what you do in a traditional theoretical description, at least in part.
  • It was developed with a large variety of linguistic phenomena in mind and is easily applicable to most languages -- not just the Standard Average European.
  • Apart from POS-tagging and full morphological tagging, there is a glossing option (words can be split into morphemes).
  • Lexemes can carry any number of attributes that have to end up in the annotation, e.g. translations into the metalanguage.
  • Ambiguity is allowed: all words you analyze will receive all theoretically possible analyses regardless of the context. (You can then use e.g. CG for rule-based disambiguation.)
  • While, in computational terms, the language described by uniparser-morph rules is certainly regular, the description is actually NOT entirely converted into an FST. Therefore, it's not nearly as fast as FST-based analyzers. The speed varies depending on the language structure and hardware characteristics, but you can hardly expect to parse more than 20,000 words per second. For heavily polysynthetic languages that figure can go as low as 200 words per second. So it's not really designed for industrial use.

The primary usage scenario I was thinking about is the following:

  • You have a corpus of texts where you want to add morphological annotation (this includes POS-tagging).
  • You manually prepare a grammar for the language in uniparser-morph format (probably making use of existing digital dictionaries of the language).
  • You compile a list of unique words in your corpus and parse it.
  • Then you annotate your texts based on this wordlist with any software you want.

Of course, you can do other things with uniparser-morph, e.g. make it a part of a more complex NLP pipeline; just make sure low speed is not an issue in your case.

uniparser-morph is distributed under the MIT license (see LICENSE).

Usage

Import the Analyzer class from the package. Here is a basic usage example:

from uniparser_morph import Analyzer
a = Analyzer()

# Put your grammar files in the current folder or set paths as properties of the Analyzer class (see below)
a.load_grammar()

analyses = a.analyze_words('Морфологиез')
# The parser is initialized before first use, so expect some delay here (usually several seconds)
# You will get a list of Wordform objects

# You can also pass lists (even nested lists) and specify output format ('xml' or 'json'):
analyses = a.analyze_words([['А'], ['Мон', 'тонэ', 'яратӥсько', '.']], format='xml')
analyses = a.analyze_words(['Морфологиез', [['А'], ['Мон', 'тонэ', 'яратӥсько', '.']]], format='json')

If you need to parse a frequency list, use analyze_wordlist() instead.

See the documentation for the full list of options.

Format

If you want to create a uniparser-morph analyzer for your language, you will have to write a set of rules that describe the vocabulary and the morphology of your language in uniparser-morph format. For the description of the format, refer to documentation .

Disambiguation with CG

If you have disambiguation rules in the Constraint Grammar format, you can use them in the following way when calling analyze_words():

analyses = a.analyze_words(['Мон', 'морфологиез', 'яратӥсько', '.'],
                           cgFile=os.path.abspath('disambiguation.cg3'),
                           disambiguate=True)

In order for this to work, you have to install the cg3 executable separately. On Ubuntu/Debian, you can use apt-get:

sudo apt-get install cg3

On Windows, download the binary and add the path to the PATH environment variable. See the documentation for other options.

Note that each time you call analyze_words() with disambiguate=True, the CG grammar is loaded and compiled from scratch, which makes the analysis even slower. If you are analyzing a large text, it would make sense to pass the entire text contents in a single function call rather than do it sentence-by-sentence, for optimal performance.

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

uniparser_morph-2.9.4.tar.gz (55.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

uniparser_morph-2.9.4-py3-none-any.whl (59.8 kB view details)

Uploaded Python 3

File details

Details for the file uniparser_morph-2.9.4.tar.gz.

File metadata

  • Download URL: uniparser_morph-2.9.4.tar.gz
  • Upload date:
  • Size: 55.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.3

File hashes

Hashes for uniparser_morph-2.9.4.tar.gz
Algorithm Hash digest
SHA256 fae5d579e98f2da3b4e92ca424b04a5c4f0aa142ea300438551949aef788dddc
MD5 b58ab54df1b2d41eab6aecfb3ef0b68e
BLAKE2b-256 5d65591b8ff239a117d63673dc20eb8c4702445b8d73d718e6ba57e4429723ad

See more details on using hashes here.

File details

Details for the file uniparser_morph-2.9.4-py3-none-any.whl.

File metadata

File hashes

Hashes for uniparser_morph-2.9.4-py3-none-any.whl
Algorithm Hash digest
SHA256 92a57e3019acfd2307739b9c2d87e8b50dd61d489c3712d1d8bb569ed489e011
MD5 accd6ca9cb2b93fe6f98f2de4f06a331
BLAKE2b-256 a03c76ce9ac3c06384e201390218f1403353a6b7ced8154a6253b5aa2aba0b3e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page