Questions tagged [srilm]

SRILM is a toolkit for building and applying statistical language models (LMs).

SRILM is a toolkit for building and applying statistical language models (LMs), primarily for use in speech recognition, statistical tagging and segmentation, and machine translation.

17 questions
3
votes
1 answer

How to implement supervised class based language model in SRILM?

I found tutorials where class based LM is implemented using Brown clustering passing just number of classes you want but I want to implement a class based model where I give class assignments initially. I tried this…
3
votes
1 answer

Error at ARPA model training with SRILM

I have followed this tutorial. After I run this code: ngram-count -kndiscount -interpolate -text train-text.txt -lm your.lm It gives me this error: "One of modified KneserNey discounts is negative error in discount estimator for order 2." How…
ziLk
  • 3,120
  • 21
  • 45
2
votes
1 answer

Error while running make command for srilm

While executing make command, I recieve the following error: /home/cse/phd/16071009/NLP//lib/i686-m64/libmisc.a(File.o): In function File::~File()': /home/cse/phd/16071009/NLP/misc/src/File.cc:127: undefined reference…
Gargi Srivastava
  • 63
  • 1
  • 1
  • 7
2
votes
1 answer

I cant install the toolkit srilm on linux mint

I have downloaded toolkit srilm from it's homepage : http://www.speech.sri.com/projects/srilm/download.html After i unpacked it, there wasn't the file ngram-count in the location srilm/bin/i686. Can anybody help me?What went wrong.
Kosta
  • 31
  • 3
1
vote
0 answers

Why is the ngram-merge of srilm taking wrong input?

This is my first post here and sorry for my poor english. I'm instantly working on Kaldi and srilm tools for my research, but I faced a strange problem while using ngram-merge to merge the 3-gram.count files generated by ngram-count. (ngram-count…
趙哲宏
  • 11
  • 1
1
vote
0 answers

Trouble installling SRILM on mac (Mohave)

In order to use KALDI ASR system I am trying to install SRILM (1.7.2) (Mac computer with Mohave 10.14.2). Apparently everything goes fine during SRILM compilation (make World), but in the end I get various errors when I try to pass the tests in…
Ignacio65
  • 11
  • 1
1
vote
1 answer

Gettig make *** [World] Error 2 when installing SRILM on Ubuntu 18.04 Virtual Box, pthread warning

I need to use SRILM to merge to language Models for Pocketsphinx. When trying to install SRILM on an Ubuntu 18.04 Virtual Box (x86-64) I always get Error 2 during make. I've alreade removed several problems with the linker and other errors which I…
scumpidou
  • 49
  • 1
  • 7
1
vote
1 answer

language model with SRILM

I'm trying to build a language model using SRILM. I have a list of phrases and I create the model using: ./ngram-count -text corpus.txt -order 3 -ukndiscount -interpolate -unk -lm corpus.lm After this I tried to make some example to see the…
Daniele
  • 821
  • 7
  • 18
1
vote
0 answers

Trouble installing SRILM on MacOS

I'm trying to install SRLIM on my Mac running El Capitan. The installation seems to be going along but in the test phase it throws a bunch of errors about not finding files, for example: ./File.cc:23:10: fatal error: 'Array.cc' file not found…
tristein
  • 11
  • 2
1
vote
1 answer

issue on creating language model for sinhala usin SRILM

I'm trying to create a sinhala voice recognition system using pocketsphinx. I use SRILM tool to create language model. My source files to create the laguage model are Here . Im using cygwin on windows 8.1 to run SRILM 1.7.1. But once i run the…
dab1984
  • 47
  • 6
1
vote
1 answer

installing SRILM using cygwin and get "iconv.h: No such file or directory # include_next " error

I'm trying to install SRILM using Cygwin with the help of this tutorial and I get this error: make[2]: Leaving directory '/srilm/zlib/src' make[1]: Leaving directory '/srilm' make release-libraries make[1]: Entering directory '/srilm' for subdir in…
AshKan
  • 779
  • 2
  • 8
  • 22
0
votes
0 answers

How to compute a simple maximum likelihood LM with SRILM

I want to use build a simple maximum likelihood (i.e. p(w|w_history) = c(w_history, w)/c(w_history), nothing else) language model without any tricks like smoothing. I am using a small corpus on purpose, to check that the computed numbers match with…
peer
  • 4,171
  • 8
  • 42
  • 73
0
votes
0 answers

make fails installing SRI LM

I tried to install SRI LM in Anaconda Prompt and my OS is Windows but looks like I'm facing an error and couldn't see any available reference or resource in the web. This is their official tutorial: https://srilm-python.readthedocs.io/en/latest/ And…
kwc
  • 21
  • 4
0
votes
1 answer

Build language on SRILM

Now i want to create a 3-gram models. a word can be many way to pronounce so i want to add wrong word, correct word in to LM like that 1.5051 CHE&3NE FOURCHU -1.5051 CHE&3NE FOURCHU*, -0.1072 CHE&3NE FOURCHU, -1.5051 CHE&3NE LE -0.7782 CHE&3NE*…
0
votes
1 answer

How to get a CTM File from CMU Sphinx?

I have decoded my speech into phonemes by using my language model.I need to segment the speech into sentences and words.I know , a ctm file will help .Can anyone tell me how to generate the ctm file for a particular speech instance ?
1
2