#$CXX lm/build_binary_main.cc $objects -o bin/build_binary $CXXFLAGS $LDFLAGS $CXX ctc_beam_search_decoder.cpp $objects -o ctc_beam_search_decoder $CXXFLAGS $LDFLAGS #$CXX lm/query_main.cc $objects -o bin/query $CXXFLAGS $LDFLAGS©...
/* CTC beam search decoder in C++, the interface is consistent with the original decoder in Python version. */ std::vector<std::pair<float, std::string> > ctc_beam_search_decoder(std::vector<std::vector<float> > probs_seq, int beam_size, std::vector<std::string> vocabulary...