two small fixes: const fix in regrree-fmllr code, fix to soft link.

This commit is contained in:
Dan Povey 2016-04-24 01:17:21 -04:00
Родитель 145d38f039
Коммит f868ace8c4
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -1 +1 @@
../../wsj/s5/local/score.sh
../steps/score_kaldi.sh

Просмотреть файл

@ -97,7 +97,7 @@ class DecodableAmDiagGmmRegtreeMllr: public DecodableAmDiagGmmUnmapped {
trans_model_.TransitionIdToPdf(tid));
}
virtual int32 NumFramesReady() { return feature_matrix_.NumRows(); }
virtual int32 NumFramesReady() const { return feature_matrix_.NumRows(); }
// Indices are one-based! This is for compatibility with OpenFst.
virtual int32 NumIndices() const { return trans_model_.NumTransitionIds(); }