Raudikko

Morphological analysis for Finnish

License

License

Categories

Categories

IDE Development Tools
GroupId

GroupId

fi.evident.raudikko
ArtifactId

ArtifactId

raudikko
Last Version

Last Version

0.1.1
Release Date

Release Date

Type

Type

pom.sha512
Description

Description

Raudikko
Morphological analysis for Finnish
Project URL

Project URL

https://github.com/evidentsolutions/raudikko
Source Code Management

Source Code Management

https://github.com/evidentsolutions/raudikko

Download raudikko

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

Raudikko

Raudikko is Java library for performing morphological analysis on Finnish language. Raudikko uses Voikko's morphology files and is based on Voikko, but unlike Voikko's Java-interface, it is implemented purely in Java and needs no native libraries. Raudikko is also quite a bit faster than Voikko's Java-interface.

Usage

Add dependency to your build file:

implementation("fi.evident.raudikko:raudikko:0.1.1")

Create an analyzer and use it to produce Analysis-objects for given words:

// First load and compile the morphology. This is a relatively expensive operation 
// that should be done only once. The loaded morphology is immutable and can be shared.
Morphology morphology = Morphology.loadBundled();

// Create an analyzer from the morphology. Creating an analyzer is a cheap operation. 
// Analyzers have some cached state and can't be shared between different threads. 
Analyzer analyzer = morphology.newAnalyzer();

// Analyze some words
System.out.println(analyzer.analyze("kissoittansa"));
System.out.println(analyzer.analyze("kahdellakymmenelläseitsemällä"));

Compatibility with Voikko

Raudikko is carefully tested against Voikko, making sure that the output of Raudikko and Voikko agree for all inputs. The below table lists the version of Voikko that Raudikko is tests against.

Raudikko version Voikko version Morphology
0.1.1 4.3 9f0d3d

Acknowledgements

Most of Raudikko's code is based heavily on Voikko and the used morphology files come directly from Voikko. None of this would be possible without the great work of Harri Pitkänen and other contributors to Voikko.

Copyright and license information

Raudikko is available under GNU General Public License version 3, or (at your option) any later version. Apart from the morphology in directory resources/morpho, all the content in this repository is also licensed under Mozilla Public License 2.0, which you may choose to use instead.

Raudikko is a port of Voikko, and therefore Voikko's original copyright holders hold copyrights on parts of Raudikko. See Voikko's LICENSE and CONTRIBUTORS for details.

Apart from the original copyright holders of Voikko, Evident Solutions Oy holds copyright on Raudikko.

fi.evident.raudikko

Evident Solutions

Passion. Kiwi. Mango.

Versions

Version
0.1.1
0.1