mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
12 lines
277 B
C++
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_
|