Skip to content

Commit

Permalink
[src] Cosmetic fix to error message in decodable-matrix.h (#3904)
Browse files Browse the repository at this point in the history
  • Loading branch information
zh794390558 authored Feb 4, 2020
1 parent 0609ace commit 7a17e95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/decoder/decodable-matrix.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class DecodableMatrixScaledMapped: public DecodableInterface {
scale_(scale), delete_likes_(false) {
if (likes.NumCols() != tm.NumPdfs())
KALDI_ERR << "DecodableMatrixScaledMapped: mismatch, matrix has "
<< likes.NumCols() << " rows but transition-model has "
<< likes.NumCols() << " cols but transition-model has "
<< tm.NumPdfs() << " pdf-ids.";
}

Expand All @@ -53,7 +53,7 @@ class DecodableMatrixScaledMapped: public DecodableInterface {
scale_(scale), delete_likes_(true) {
if (likes->NumCols() != tm.NumPdfs())
KALDI_ERR << "DecodableMatrixScaledMapped: 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 7a17e95

Please sign in to comment.