#ifndef OUTPUT_H_ #define OUTPUT_H_ #include /* 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 { double confidence; std::vector tokens; std::vector timesteps; }; #endif // OUTPUT_H_