Skip to content

Commit

Permalink
[src] Fix to recent commit RE RNNLM code
Browse files Browse the repository at this point in the history
  • Loading branch information
danpovey committed Mar 27, 2018
1 parent 785198e commit 7498395
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rnnlm/rnnlm-compute-state.cc
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@ RnnlmComputeStateInfo::RnnlmComputeStateInfo(
}

if (opts.bos_index <= 0 || opts.bos_index >= word_embedding_mat.NumRows()) {
KALDI_ERR < "--bos-symbol option isn't set correctly.";
KALDI_ERR << "--bos-symbol option isn't set correctly.";
}

if (opts.eos_index <= 0 || opts.eos_index >= word_embedding_mat.NumRows()) {
KALDI_ERR < "--eos-symbol option isn't set correctly.";
KALDI_ERR << "--eos-symbol option isn't set correctly.";
}

nnet3::ComputationRequest request1, request2, request3;
Expand Down

0 comments on commit 7498395

Please sign in to comment.