You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
692 B
20 lines
692 B
#ifndef CTC_BEAM_SEARCH_DECODER_H_
|
|
#define CTC_BEAM_SEARCH_DECODER_H_
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <utility>
|
|
#include "scorer.h"
|
|
|
|
std::vector<std::pair<double, std::string> >
|
|
ctc_beam_search_decoder(std::vector<std::vector<double> > probs_seq,
|
|
int beam_size,
|
|
std::vector<std::string> vocabulary,
|
|
int blank_id=0,
|
|
double cutoff_prob=1.0,
|
|
Scorer *ext_scorer=NULL,
|
|
bool nproc=false
|
|
);
|
|
|
|
#endif // CTC_BEAM_SEARCH_DECODER_H_
|