logprob= -4.975801
echo "$0: Creating archives with text-form of words, and LM scores without graph scores."
# Do some small tasks; for these we don't use the queue, it will only slow us down.
for n in `seq $nj`; do
utils/int2sym.pl -f 2- $oldlang/words.txt < $adir.$n/words > $adir.$n/words_text || exit 1;
mkdir -p $adir.$n/temp
paste $adir.$n/lmwt.nolm $adir.$n/lmwt.withlm | awk '{print $1, ($4-$2);}' > \
$adir.$n/lmwt.lmonly || exit 1;
the LM cost for one entry in the n-best list is
P2-Utt10-1 11.4572 the logprob for ngram LM is logprob= -4.975801
what does LM score represent?
thanks