DeepSpeech/native_client/ctcdecode/output.h
2018-10-25 17:00:48 -03:00

12 lines
277 B
C++

#ifndef OUTPUT_H_
#define OUTPUT_H_
/* Struct for the beam search output, containing the tokens based on the vocabulary indices, and the timesteps
* for each token in the beam search output
*/
struct Output {
std::vector<int> tokens, timesteps;
};
#endif // OUTPUT_H_