DeepSpeech/native_client/dotnet/DeepSpeechClient/Models/Metadata.cs
2019-09-11 11:09:44 +02:00

17 lines
525 B
C#

namespace DeepSpeechClient.Models
{
/// <summary>
/// Stores the entire CTC output as an array of character metadata objects.
/// </summary>
public class Metadata
{
/// <summary>
/// Approximated confidence value for this transcription.
/// </summary>
public double Confidence { get; set; }
/// <summary>
/// List of metada items containing char, timespet, and time offset.
/// </summary>
public MetadataItem[] Items { get; set; }
}
}