Merge pull request #664 from kaldi-asr/arpa-warnlimit

arpa2fst: count the bos/eos warninig towards the limit
This commit is contained in:
Kirill Katsnelson 2016-04-05 23:17:54 -07:00
Родитель de185e2f11 62d3e1788f
Коммит 24f553cf04
1 изменённых файлов: 3 добавлений и 2 удалений

Просмотреть файл

@ -304,8 +304,9 @@ void ArpaLmCompiler::ConsumeNGram(const NGram &ngram) {
if ((i > 0 && ngram.words[i] == Options().bos_symbol) ||
(i + 1 < ngram.words.size()
&& ngram.words[i] == Options().eos_symbol)) {
KALDI_WARN << LineReference()
<< " skipped: n-gram has invalid BOS/EOS placement";
if (ShouldWarn())
KALDI_WARN << LineReference()
<< " skipped: n-gram has invalid BOS/EOS placement";
return;
}
}