How do I install SRILM on ubuntu 14.04?

6,582

Solution 1

I have already installed to srilm on Ubuntu 14.04. Following are the commands:

mkdir /usr/share/srilm
mv srilm.tgz /usr/share/srilm
cd /usr/share/srilm
tar xzf srilm.tgz

In the Makefile, uncomment the SRILM= parameter and point it to /usr/share/srilm (or your equivalent path).

The run the following commands in Supper user mode:

tcsh
make NO_TCL=1 MACHINE_TYPE=i686-gcc4 World (if you are using 64 bit system then i686 to replace with x86_64)
./bin/i686-gcc4/ngram-count -help

Solution 2

Download and anpack tgz-file (e.g. from moses-suite and then follow instructions in INSTALL text document with installation instruction. After successful make-ing process do not forget to update export PATH with path that includes $MACHINE_TYPE (it is all described in the INSTALL).

Share:
6,582

Related videos on Youtube

alvas
Author by

alvas

食飽未?

Updated on September 18, 2022

Comments

  • alvas
    alvas over 1 year

    SRILM is a tool for Language Modelling in Natural Language Processing (NLP), http://www.speech.sri.com/projects/srilm/

    There is no clear installation guide to install SRILM on ubuntu 14.04. There was one for 11.10 but it is outdated and it doesn't work properly. http://www.spencegreen.com/2012/02/01/installing-srilm-on-ubuntu-11-10/

    Does anyone know how to install SRILM on Ubuntu 14.04?

  • alvas
    alvas over 9 years
    I'm getting /usr/share/srilm/common/Makefile.common.variables:105: /usr/share/srilm/common/Makefile.machine.x86_64-gcc4: No such file or directory make: *** No rule to make target /usr/share/srilm/common/Makefile.machine.x86_64-gcc4'. Stop. `
  • VolAnd
    VolAnd about 9 years
    MACHINE_TYPE=i686-m64 should be used... not x86_64. Just read installation instruction in INSTALL file
  • Lamda
    Lamda over 7 years
    Could this be added to the post above?
  • Adnan Ali
    Adnan Ali almost 7 years
    I am getting this. make NO_TCL=1 MACHINE_TYPE=i686-m64 World make: *** No rule to make target 'World'. Stop.