-
Notifications
You must be signed in to change notification settings - Fork 11
Latvian morphology module
License
PeterisP/morphology
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
***********************************************
* Morphological Analyzer for Latvian Language *
***********************************************
A Java library for analyzing morphology and part of speech information for Latvian words.
Accurate analysis is based on lexeme data periodically updated from Tezaurs.lv database.
Also includes generation of all inflections of a word, and crude statistical disambiguation for analysis.
BASIC USAGE
Analyzer analyzer = new Analyzer();
// analysis
Word result = analyzer.analyze("roku");
for (Wordform wf : result.wordforms) {
wf.describe();
}
// generation of inflections
List<Wordform> wordforms = analyzer.generateInflections("rakt");
for (Wordform wf : wordforms) {
wf.describe();
}
Review unit tests for more examples.
INSTALLATION
Use maven to build and deploy.
The published releases should be available at Maven Central https://central.sonatype.com/artifact/lv.ailab.morphology/morphology
Packaging instructions at docs/deployment.md
LICENCE
(c) Institute of Mathematics and Computer Science, University of Latvia, 2005-2025
This software is licenced under GNU General Public Licence.
Commercial licencing is available if neccessary, contact us at peteris@ailab.lv.
REFERENCES
Current usage is described at http://www.ep.liu.se/ecp_article/index.en.aspx?issue=085;article=024
The initial core algorithm is published at http://www.semti-kamols.lv/doc_upl/Kamols-Kaunas-paper-3.pdf
About
Latvian morphology module
Resources
License
Stars
Watchers
Forks
Packages 0
No packages published