Skip to content

Commit 0609ace

Browse files
authored
[src] Cosmetic fix to error messages, decodable-matrix.cc (#3905)
1 parent 98f2edf commit 0609ace

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/decoder/decodable-matrix.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DecodableMatrixMapped::DecodableMatrixMapped(
3232

3333
if (likes.NumCols() != tm.NumPdfs())
3434
KALDI_ERR << "Mismatch, matrix has "
35-
<< likes.NumCols() << " rows but transition-model has "
35+
<< likes.NumCols() << " cols but transition-model has "
3636
<< tm.NumPdfs() << " pdf-ids.";
3737
}
3838

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

0 commit comments

Comments
 (0)