diff --git a/src/decoder/decodable-matrix.cc b/src/decoder/decodable-matrix.cc index 3cc7b87f2d7..e414b35723a 100644 --- a/src/decoder/decodable-matrix.cc +++ b/src/decoder/decodable-matrix.cc @@ -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."; } @@ -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."; }