Skip to content

Commit

Permalink
[src] Cosmetic fix to error messages, decodable-matrix.cc (#3905)
Browse files Browse the repository at this point in the history
  • Loading branch information
zh794390558 authored Feb 4, 2020
1 parent 98f2edf commit 0609ace
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decoder/decodable-matrix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ DecodableMatrixMapped::DecodableMatrixMapped(

if (likes.NumCols() != tm.NumPdfs())
KALDI_ERR << "Mismatch, matrix has "
<< likes.NumCols() << " rows but transition-model has "
<< likes.NumCols() << " cols but transition-model has "
<< tm.NumPdfs() << " pdf-ids.";
}

Expand All @@ -45,7 +45,7 @@ DecodableMatrixMapped::DecodableMatrixMapped(
raw_data_ = likes->Data() - (stride_ * frame_offset_);
if (likes->NumCols() != tm.NumPdfs())
KALDI_ERR << "Mismatch, matrix has "
<< likes->NumCols() << " rows but transition-model has "
<< likes->NumCols() << " cols but transition-model has "
<< tm.NumPdfs() << " pdf-ids.";
}

Expand Down

0 comments on commit 0609ace

Please sign in to comment.