mirror of
https://github.com/mozilla/DeepSpeech.git
synced 2025-10-26 11:19:39 +00:00
17 lines
539 B
C#
17 lines
539 B
C#
namespace DeepSpeechClient.Models
|
|
{
|
|
/// <summary>
|
|
/// Stores the entire CTC output as an array of character metadata objects.
|
|
/// </summary>
|
|
public class CandidateTranscript
|
|
{
|
|
/// <summary>
|
|
/// Approximated confidence value for this transcription.
|
|
/// </summary>
|
|
public double Confidence { get; set; }
|
|
/// <summary>
|
|
/// List of metada tokens containing text, timestep, and time offset.
|
|
/// </summary>
|
|
public TokenMetadata[] Tokens { get; set; }
|
|
}
|
|
} |