namespace DeepSpeechClient.Models
{
///
/// Stores the entire CTC output as an array of character metadata objects.
///
public class CandidateTranscript
{
///
/// Approximated confidence value for this transcription.
///
public double Confidence { get; set; }
///
/// List of metada tokens containing text, timestep, and time offset.
///
public TokenMetadata[] Tokens { get; set; }
}
}