Difference between revisions of "Omorfi"

From Apertium
Jump to navigation Jump to search
(New page: {{TOCD}} '''OMorFi''' (Open Morphology of Finnish) is a computational morphology of Finnish written using SFST (or rather the Helsinki HFST variant). ==Download== ==Compilation== ==...)
 
 
(24 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
{{TOCD}}
 
{{TOCD}}
'''OMorFi''' (Open Morphology of Finnish) is a computational morphology of Finnish written using [[SFST]] (or rather the Helsinki HFST variant).
+
'''Omorfi''' (Open Morphology of Finnish) is a computational morphology of Finnish written using [[HFST]].
  +
  +
==Requirements==
  +
  +
You will need [[HFST]] installed, you can follow the instructions on the [[HFST]] page.
   
 
==Download==
 
==Download==
  +
  +
The following commands will download and prepare the build for OMorFi.
  +
  +
<pre>
  +
$ git clone https://github.com/flammie/omorfi
  +
$ cd omorfi/
  +
$ ./autogen.sh
  +
$ ./configure
  +
</pre>
  +
  +
In case autogen.sh does not work, do report a bug (autoreconf -i should work just as well in the meantime).
   
 
==Compilation==
 
==Compilation==
  +
  +
You need at least 1.5Gb RAM to compile Omorfi, or be willing to let your machine sit around trashing for some hours.
  +
  +
<pre>
  +
$ make
  +
</pre>
  +
  +
This will compile everything.
  +
  +
To prepare source code for new apertium language pair, use src/scripts/omor2apertium.sh... or just copy one from an existing pair, such as apertium-fin-eng.
   
 
==Usage==
 
==Usage==
  +
  +
After compiling, you can test it with the <code>hfst-lookup</code> program.
  +
  +
==See also==
  +
  +
* [[hfst]]
  +
* [[foma]]
   
 
==External links==
 
==External links==
* [https://kitwiki.csc.fi/twiki/bin/view/KitWiki/OMorFiSFSTVersion#Installation OMorFi: Installation]
 
   
  +
* [http://code.google.com/p/omorfi Omorfi project site at google code]
  +
* [http://langtech.jrc.it/FSMNLP2008/m/Koskenniemi_invited_talk.pdf Overview of the HFST project (pdf)], esp. in relation to other FST technology
   
 
[[Category:Tools]]
 
[[Category:Tools]]

Latest revision as of 14:53, 2 June 2016

Omorfi (Open Morphology of Finnish) is a computational morphology of Finnish written using HFST.

Requirements[edit]

You will need HFST installed, you can follow the instructions on the HFST page.

Download[edit]

The following commands will download and prepare the build for OMorFi.

$ git clone https://github.com/flammie/omorfi
$ cd omorfi/
$ ./autogen.sh
$ ./configure

In case autogen.sh does not work, do report a bug (autoreconf -i should work just as well in the meantime).

Compilation[edit]

You need at least 1.5Gb RAM to compile Omorfi, or be willing to let your machine sit around trashing for some hours.

$ make

This will compile everything.

To prepare source code for new apertium language pair, use src/scripts/omor2apertium.sh... or just copy one from an existing pair, such as apertium-fin-eng.

Usage[edit]

After compiling, you can test it with the hfst-lookup program.

See also[edit]

External links[edit]