Difference between revisions of "IRSTLM"
Jump to navigation
Jump to search
Line 15: | Line 15: | ||
== Make a language model == |
== Make a language model == |
||
<pre> |
<pre> |
||
export IRSTLM=/prefix |
export IRSTLM=/path/prefix |
||
$IRSTLM/build-lm.sh -i incorpus.txt -o out.lm.gz -t tmp/ |
$IRSTLM/build-lm.sh -i incorpus.txt -o out.lm.gz -t tmp/ |
||
</pre> |
</pre> |
||
==See also== |
==See also== |
Revision as of 08:57, 29 April 2015
IRSTLM is a free and open source exact statistical language model using memory-mapping. The language models are compatible with those created with the closed-source SRILM Tooolkit.
See the homepage at http://hlt.fbk.eu/en/irstlm
Installation
svn checkout svn://svn.code.sf.net/p/irstlm/code/trunk irstlm cd irstlm cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/path/prefix make -j4 make install
Make a language model
export IRSTLM=/path/prefix $IRSTLM/build-lm.sh -i incorpus.txt -o out.lm.gz -t tmp/
See also
- Moses
- Using GIZA++
- RandLM - a randomised LM, based on Bloom Filters