Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/nnet3/nnet-normalize-component.cc
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ void BatchNormComponent::ComputeDerived() {

if (count_ == 0.0) {
KALDI_WARN << "Test-mode is set but there is no data count. "
"Creating random counts. This only makes sense "
"in unit-tests (or compute_prob_*.0.log). If you see this "
"Creating random counts. This is NOT A PROBLEM if the message "
"appears in unit-tests or in compute_prob_*.0.log. If you see this "
"elsewhere, something is very wrong.";
count_ = 1.0;
stats_sum_.SetRandn();
Expand Down
3 changes: 1 addition & 2 deletions tools/extras/install_kaldi_lm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@ fi
echo "Installing kaldi_lm"

if [ ! -d "kaldi_lm" ]; then
wget http://www.danielpovey.com/files/kaldi/kaldi_lm.tar.gz || exit 1;
tar -xvzf kaldi_lm.tar.gz || exit 1;
git clone https://github.com/danpovey/kaldi_lm.git || exit 1
fi

cd kaldi_lm
Expand Down