Skip to content

Commit 7a17e95

Browse files
authored
[src] Cosmetic fix to error message in decodable-matrix.h (#3904)
1 parent 0609ace commit 7a17e95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/decoder/decodable-matrix.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ class DecodableMatrixScaledMapped: public DecodableInterface {
4040
scale_(scale), delete_likes_(false) {
4141
if (likes.NumCols() != tm.NumPdfs())
4242
KALDI_ERR << "DecodableMatrixScaledMapped: mismatch, matrix has "
43-
<< likes.NumCols() << " rows but transition-model has "
43+
<< likes.NumCols() << " cols but transition-model has "
4444
<< tm.NumPdfs() << " pdf-ids.";
4545
}
4646

@@ -53,7 +53,7 @@ class DecodableMatrixScaledMapped: public DecodableInterface {
5353
scale_(scale), delete_likes_(true) {
5454
if (likes->NumCols() != tm.NumPdfs())
5555
KALDI_ERR << "DecodableMatrixScaledMapped: mismatch, matrix has "
56-
<< likes->NumCols() << " rows but transition-model has "
56+
<< likes->NumCols() << " cols but transition-model has "
5757
<< tm.NumPdfs() << " pdf-ids.";
5858
}
5959

0 commit comments

Comments
 (0)