Skip to content

Commit

Permalink
Update ctc_decoder.cc
Browse files Browse the repository at this point in the history
fix arg
  • Loading branch information
Mddct authored Jun 24, 2022
1 parent cf1f9a9 commit 51b217e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ctc_decoder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ parallel_ctc_beam_search_decoder(uintptr_t pdata, int max_time, int bs,
// future result
std::vector<DecodeResult> batch_results;
for (int i =0 ; i < bs; i++){
batch_results.emplace_back(res[i].get(0)[0]);
batch_results.emplace_back(res[i].get()[0]);
}
}
}

0 comments on commit 51b217e

Please sign in to comment.